[Swift-commit] r4645 - usertools/plotter/src/plotter

jonmon at ci.uchicago.edu jonmon at ci.uchicago.edu
Mon Jun 20 15:41:39 CDT 2011


Author: jonmon
Date: 2011-06-20 15:41:39 -0500 (Mon, 20 Jun 2011)
New Revision: 4645

Modified:
   usertools/plotter/src/plotter/Lines.java
Log:
removed some println statements


Modified: usertools/plotter/src/plotter/Lines.java
===================================================================
--- usertools/plotter/src/plotter/Lines.java	2011-06-20 20:41:18 UTC (rev 4644)
+++ usertools/plotter/src/plotter/Lines.java	2011-06-20 20:41:39 UTC (rev 4645)
@@ -116,14 +116,12 @@
             }
             double[][] array = LineReader.array(lines);
             data.add(array);
-            // System.out.println(Arrays.toString(array[0]));
-            // System.out.println(Arrays.toString(array[1]));
             addLabel(name, labels);
             Util.verbose("array:\n" + toString(array));
         }
 
-        XYSeriesCollection collection = Util.collection(data, labels,
-                                                        names);
+        XYSeriesCollection collection = Plots.collection(data, labels,
+                                                         names);
 
         plot(collection, title, xlabel, ylabel, output);
     }
@@ -198,10 +196,6 @@
                                   XYSeriesCollection collection)
     {
         XYPlot plot = chart.getXYPlot();
-        // System.out.println(plot.getDomainAxis().getRange().getLowerBound());
-        // System.out.println(plot.getDomainAxis().getRange().getUpperBound());
-        // System.out.println(plot.getRangeAxis().getRange().getLowerBound());
-        // System.out.println(plot.getRangeAxis().getRange().getUpperBound());
         XYLineAndShapeRenderer renderer = new XYLineAndShapeRenderer();
         if (bw)
             for (int i = 0; i < plot.getSeriesCount(); i++)
@@ -342,7 +336,6 @@
 
     static boolean showShape(String name)
     {
-        // System.out.println(name);
         String mode = properties.getProperty("shape."+name);
         // System.out.println(mode);
         if ("none".equals(mode))




More information about the Swift-commit mailing list