remove unnecessary method from Client.java
[fleet.git] / src / edu / berkeley / fleet / fpga / Client.java
index a642b74..4d83c65 100644 (file)
@@ -18,10 +18,6 @@ public class Client extends FleetProcess {
     private Socket s;
     private BlockingQueue<BitVector> queue = new LinkedBlockingQueue<BitVector>();
 
-    public void invokeInstruction(Instruction i) {
-        throw new RuntimeException("not implemented");
-    }
-
     public static long signExtend(long val) {
         if ((val & (1L << 36)) != 0)
             val = val | (0xffffffffffffffffL << 36);