[Swift-commit] r4650 - usertools/plotter/src/plotter
jonmon at ci.uchicago.edu
jonmon at ci.uchicago.edu
Mon Jun 20 16:29:23 CDT 2011
Author: jonmon
Date: 2011-06-20 16:29:23 -0500 (Mon, 20 Jun 2011)
New Revision: 4650
Modified:
usertools/plotter/src/plotter/Lines.java
Log:
fixed an error when I moved the collection method in the Lines.java
Modified: usertools/plotter/src/plotter/Lines.java
===================================================================
--- usertools/plotter/src/plotter/Lines.java 2011-06-20 21:28:51 UTC (rev 4649)
+++ usertools/plotter/src/plotter/Lines.java 2011-06-20 21:29:23 UTC (rev 4650)
@@ -19,6 +19,7 @@
import org.jfree.chart.renderer.xy.XYLineAndShapeRenderer;
import org.jfree.data.Range;
import org.jfree.data.general.Series;
+import org.jfree.data.xy.XYSeries;
import org.jfree.data.xy.XYSeriesCollection;
/**
@@ -120,8 +121,8 @@
Util.verbose("array:\n" + toString(array));
}
- XYSeriesCollection collection = Plots.collection(data, labels,
- names);
+ XYSeriesCollection collection = collection(data, labels,
+ names);
plot(collection, title, xlabel, ylabel, output);
}
More information about the Swift-commit
mailing list