Revision: 543
Author: allain.lalonde
Date: Tue Jul 21 07:59:29 2009
Log: removed static from before what amounted to instance variables.
http://code.google.com/p/piccolo2d/source/detail?r=543
Modified:
/piccolo2d.java/trunk/examples/src/main/java/edu/umd/cs/piccolo/examples/GridExample.java
=======================================
---
/piccolo2d.java/trunk/examples/src/main/java/edu/umd/cs/piccolo/examples/GridExample.java
Fri Jan 23 12:27:47 2009
+++
/piccolo2d.java/trunk/examples/src/main/java/edu/umd/cs/piccolo/examples/GridExample.java
Tue Jul 21 07:59:29 2009
@@ -53,10 +53,10 @@
*/
public class GridExample extends PFrame {
- static protected Line2D gridLine = new Line2D.Double();
- static protected Stroke gridStroke = new BasicStroke(1);
- static protected Color gridPaint = Color.BLACK;
- static protected double gridSpacing = 20;
+ protected Line2D gridLine = new Line2D.Double();
+ protected Stroke gridStroke = new BasicStroke(1);
+ protected Color gridPaint = Color.BLACK;
+ protected double gridSpacing = 20;
public GridExample() {
this(null);
--~--~---------~--~----~------------~-------~--~----~
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
-~----------~----~----~----~------~----~------~--~---