remove unnecessary method from Client.java
authoradam <adam@megacz.com>
Mon, 3 Nov 2008 09:39:05 +0000 (10:39 +0100)
committeradam <adam@megacz.com>
Mon, 3 Nov 2008 09:39:05 +0000 (10:39 +0100)
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);