eliminate one-arg Client() constructor
authoradam <adam@megacz.com>
Tue, 13 Feb 2007 14:43:39 +0000 (15:43 +0100)
committeradam <adam@megacz.com>
Tue, 13 Feb 2007 14:43:39 +0000 (15:43 +0100)
src/edu/berkeley/fleet/slipway/Client.java

index a30f31b..c4d4e11 100644 (file)
@@ -35,7 +35,6 @@ public class Client extends FleetProcess {
         } catch (Exception e) { e.printStackTrace(); }
     }
 
-    public Client(byte[] program) throws IOException { this("superbowl.bit", program); }
     public Client(String bitfile, byte[] program) throws IOException {
         s = new Socket(InetAddress.getByName("bee441.cs.berkeley.edu"), 3133);
         OutputStream os = s.getOutputStream();