From 65e97fbf5949547f76cbfffa2a300fe384a48e91 Mon Sep 17 00:00:00 2001
From: cramakri <cramakri>
Date: Mon, 23 Aug 2010 08:18:32 +0000
Subject: [PATCH] MINOR: Formatted code.

SVN: 17562
---
 .../generic/server/graph/TabularDataHeatmapTest.java | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/generic/server/graph/TabularDataHeatmapTest.java b/screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/generic/server/graph/TabularDataHeatmapTest.java
index b36ced2b96e..a17018f3d31 100644
--- a/screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/generic/server/graph/TabularDataHeatmapTest.java
+++ b/screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/generic/server/graph/TabularDataHeatmapTest.java
@@ -34,7 +34,8 @@ public class TabularDataHeatmapTest extends AbstractTabularDataGraphTest
         File outputFile = getImageOutputFile();
 
         TabularDataHeatmapConfiguration config =
-                new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"), new CodeAndLabel("InfectionIndex"), 300, 200);
+                new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"),
+                        new CodeAndLabel("InfectionIndex"), 300, 200);
         AbstractTabularDataGraph<TabularDataHeatmapConfiguration> graph =
                 new TabularDataHeatmap(config, getDatasetFileLines(), getOutputStream(outputFile));
         assertSame(graph.tryXColumnNumber(), graph.tryYColumnNumber());
@@ -50,7 +51,8 @@ public class TabularDataHeatmapTest extends AbstractTabularDataGraphTest
         File outputFile = getImageOutputFile();
 
         TabularDataHeatmapConfiguration config =
-                new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"), new CodeAndLabel("BigNumber"), 300, 200);
+                new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"),
+                        new CodeAndLabel("BigNumber"), 300, 200);
         AbstractTabularDataGraph<TabularDataHeatmapConfiguration> graph =
                 new TabularDataHeatmap(config, getBigNumberDatasetFileLines(),
                         getOutputStream(outputFile));
@@ -67,7 +69,8 @@ public class TabularDataHeatmapTest extends AbstractTabularDataGraphTest
         File outputFile = getImageOutputFile();
 
         TabularDataHeatmapConfiguration config =
-                new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"), new CodeAndLabel("Zero"), 300, 200);
+                new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"),
+                        new CodeAndLabel("Zero"), 300, 200);
         AbstractTabularDataGraph<TabularDataHeatmapConfiguration> graph =
                 new TabularDataHeatmap(config, getBigNumberDatasetFileLines(),
                         getOutputStream(outputFile));
@@ -85,7 +88,8 @@ public class TabularDataHeatmapTest extends AbstractTabularDataGraphTest
         File outputFile = getImageOutputFile();
 
         TabularDataHeatmapConfiguration config =
-                new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"), new CodeAndLabel("Non-Existant"), 300, 200);
+                new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"),
+                        new CodeAndLabel("Non-Existant"), 300, 200);
         AbstractTabularDataGraph<TabularDataHeatmapConfiguration> graph =
                 new TabularDataHeatmap(config, getDatasetFileLines(), getOutputStream(outputFile));
 
-- 
GitLab