From 8b9dfefb94bf0c7684524665ead8c3704f6babc6 Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 13 Feb 2007 15:43:39 +0100 Subject: [PATCH] eliminate one-arg Client() constructor --- src/edu/berkeley/fleet/slipway/Client.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/edu/berkeley/fleet/slipway/Client.java b/src/edu/berkeley/fleet/slipway/Client.java index a30f31b..c4d4e11 100644 --- a/src/edu/berkeley/fleet/slipway/Client.java +++ b/src/edu/berkeley/fleet/slipway/Client.java @@ -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(); -- 1.7.10.4