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:38:19 UTC

svn commit: r408513 - /jakarta/jmeter/branches/rel-2-1/src/components/org/apache/jmeter/visualizers/LineGraph.java

Author: sebb
Date: Sun May 21 15:38:19 2006
New Revision: 408513

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

Modified:
    jakarta/jmeter/branches/rel-2-1/src/components/org/apache/jmeter/visualizers/LineGraph.java

Modified: jakarta/jmeter/branches/rel-2-1/src/components/org/apache/jmeter/visualizers/LineGraph.java
URL: http://svn.apache.org/viewvc/jakarta/jmeter/branches/rel-2-1/src/components/org/apache/jmeter/visualizers/LineGraph.java?rev=408513&r1=408512&r2=408513&view=diff
==============================================================================
--- jakarta/jmeter/branches/rel-2-1/src/components/org/apache/jmeter/visualizers/LineGraph.java (original)
+++ jakarta/jmeter/branches/rel-2-1/src/components/org/apache/jmeter/visualizers/LineGraph.java Sun May 21 15:38:19 2006
@@ -51,7 +51,7 @@
     protected String[] xAxisLabels, yAxisLabel;
     protected int width, height;
     
-    public static final Shape[] SHAPE_ARRAY = {PointChartProperties.SHAPE_CIRCLE,
+    private static final Shape[] SHAPE_ARRAY = {PointChartProperties.SHAPE_CIRCLE,
             PointChartProperties.SHAPE_DIAMOND,PointChartProperties.SHAPE_SQUARE,
             PointChartProperties.SHAPE_TRIANGLE};
 
@@ -60,7 +60,7 @@
      * we can add more. Though more than 12 lines per graph will look 
      * rather busy and be hard to read.
      */
-    public static final Paint[] PAINT_ARRAY = {Color.BLACK,
+    private static final Paint[] PAINT_ARRAY = {Color.BLACK,
             Color.BLUE,Color.GREEN,Color.MAGENTA,Color.ORANGE,
             Color.RED,Color.YELLOW,Color.DARK_GRAY,Color.GRAY,Color.LIGHT_GRAY,
             Color.PINK,Color.CYAN};



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