You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2006/05/22 00:29:30 UTC

svn commit: r408510 - /jakarta/jmeter/branches/rel-2-1/src/reports/org/apache/jmeter/testelement/LineChart.java

Author: sebb
Date: Sun May 21 15:29:29 2006
New Revision: 408510

URL: http://svn.apache.org/viewvc?rev=408510&view=rev
Log:
No need for array to be public
[Findbugs]
Also privatised other variables

Modified:
    jakarta/jmeter/branches/rel-2-1/src/reports/org/apache/jmeter/testelement/LineChart.java

Modified: jakarta/jmeter/branches/rel-2-1/src/reports/org/apache/jmeter/testelement/LineChart.java
URL: http://svn.apache.org/viewvc/jakarta/jmeter/branches/rel-2-1/src/reports/org/apache/jmeter/testelement/LineChart.java?rev=408510&r1=408509&r2=408510&view=diff
==============================================================================
--- jakarta/jmeter/branches/rel-2-1/src/reports/org/apache/jmeter/testelement/LineChart.java (original)
+++ jakarta/jmeter/branches/rel-2-1/src/reports/org/apache/jmeter/testelement/LineChart.java Sun May 21 15:29:29 2006
@@ -34,9 +34,9 @@
 
 public class LineChart extends AbstractChart {
 
-    private static final String URL_DELIM = ","; // $NON-NLS-1$
-	public static final String REPORT_CHART_URLS = "ReportChart.chart.urls"; // $NON-NLS-1$
-    public static final Shape[] SHAPE_ARRAY = {PointChartProperties.SHAPE_CIRCLE,
+    private static final String URL_DELIM = ","; //$NON-NLS-1$
+	private static final String REPORT_CHART_URLS = "ReportChart.chart.urls"; //$NON-NLS-1$
+    private static final Shape[] SHAPE_ARRAY = {PointChartProperties.SHAPE_CIRCLE,
             PointChartProperties.SHAPE_DIAMOND,PointChartProperties.SHAPE_SQUARE,
             PointChartProperties.SHAPE_TRIANGLE};
     



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org