Make several fields of the Interpreter non-private (for fgd)
authormegacz <adam@megacz.com>
Sat, 13 Dec 2008 05:37:57 +0000 (21:37 -0800)
committermegacz <adam@megacz.com>
Sat, 13 Dec 2008 05:37:57 +0000 (21:37 -0800)
src/edu/berkeley/fleet/interpreter/InterpreterDock.java

index 9e2e20a..c9f9282 100644 (file)
@@ -20,13 +20,14 @@ class InterpreterDock extends FleetTwoDock {
     public InterpreterPath pathLatch = null;
     public InterpreterPath tapl = null;
     public boolean hatchIsOpen = true;
-    private Instruction executing = null;
-    private Queue<Instruction> instructions = new LinkedList<Instruction>();
-    private Queue<Instruction> epilogue = new LinkedList<Instruction>();
-    private boolean dataReadyForShip = false;
-    private boolean readyForDataFromShip = true;
-    private long dataFromShip;
-    private boolean torpedoWaiting = false;
+
+    Instruction executing = null;
+    Queue<Instruction> instructions = new LinkedList<Instruction>();
+    Queue<Instruction> epilogue = new LinkedList<Instruction>();
+    boolean dataReadyForShip = false;
+    boolean readyForDataFromShip = true;
+    long dataFromShip;
+    boolean torpedoWaiting = false;
 
     protected void reset() {
         ilc = 1;