From: jjenista <jjenista>
Date: Wed, 11 May 2011 17:41:51 +0000 (+0000)
Subject: did we just ignore the static field modifier before?  How did OOOJ or DOJ work with... 
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=959be84fcd2bca874b0cb30504cde31291b40eea;p=IRC.git

did we just ignore the static field modifier before?  How did OOOJ or DOJ work with static fields?  In the case of labyrinth there is no need for fields in the top-level singleton class to be static
---

diff --git a/Robust/src/Benchmarks/oooJava/labyrinth/Labyrinth.java b/Robust/src/Benchmarks/oooJava/labyrinth/Labyrinth.java
index c350075a..bd7e7e6a 100644
--- a/Robust/src/Benchmarks/oooJava/labyrinth/Labyrinth.java
+++ b/Robust/src/Benchmarks/oooJava/labyrinth/Labyrinth.java
@@ -70,8 +70,11 @@
 
 public class Labyrinth 
 {
-static  String global_inputFile;
-static   boolean global_doPrint;
+  // jjenista -- not sure what is going with static fields in the general
+  // compiler, let alone disjoint/pointer/OOOJ/DOJ
+  /*static*/  String global_inputFile;
+  /*static*/  boolean global_doPrint;
+
     int numThread;
     int bendCost;
     int xCost;