make fields of InterpreterPath private
authormegacz <adam@megacz.com>
Thu, 8 Jan 2009 02:56:40 +0000 (18:56 -0800)
committermegacz <adam@megacz.com>
Thu, 8 Jan 2009 02:56:40 +0000 (18:56 -0800)
src/edu/berkeley/fleet/interpreter/InterpreterDestination.java
src/edu/berkeley/fleet/interpreter/InterpreterPath.java

index e30a161..189e2e1 100644 (file)
@@ -21,7 +21,7 @@ class InterpreterDestination extends Destination {
         }
     }
 
-    /** adds the included datum to the port from the switch fabric  side */
+    /** adds the included datum to the port from the switch fabric side */
     public void addDataFromFabric(Packet packet) {
         packets.add(packet);
     }
index e2ad10b..08bf3b5 100644 (file)
@@ -5,9 +5,9 @@ import java.util.*;
 
 class InterpreterPath extends FleetTwoPath {
 
-    public final InterpreterDock source;
-    public final InterpreterDestination dest;
-    public final BitVector signal;
+    private final InterpreterDock source;
+    private final InterpreterDestination dest;
+    private final BitVector signal;
 
     public InterpreterPath(InterpreterDock source,
                            InterpreterDestination dest,