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;