aboutsummaryrefslogtreecommitdiff
path: root/src/IvyClient.java
diff options
context:
space:
mode:
authorjestin2012-05-13 08:54:38 +0000
committerjestin2012-05-13 08:54:38 +0000
commite854a58a81ec90e419a4b3effa5a83caac05df90 (patch)
tree16eb84a66b62ff38e744c8cd474df81561436b9f /src/IvyClient.java
parent4ffe8b84071babe544086f94c66431380d301d59 (diff)
downloadivy-java-e854a58a81ec90e419a4b3effa5a83caac05df90.zip
ivy-java-e854a58a81ec90e419a4b3effa5a83caac05df90.tar.gz
ivy-java-e854a58a81ec90e419a4b3effa5a83caac05df90.tar.bz2
ivy-java-e854a58a81ec90e419a4b3effa5a83caac05df90.tar.xz
Modified the tests to remove bus.getDomain(null)
make Waiter and WaiterClient sons of WaitFor Added a few tests into svn
Diffstat (limited to 'src/IvyClient.java')
-rwxr-xr-xsrc/IvyClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/IvyClient.java b/src/IvyClient.java
index 8e20d2d..aadbd0b 100755
--- a/src/IvyClient.java
+++ b/src/IvyClient.java
@@ -113,7 +113,6 @@ public class IvyClient extends Thread {
private static int clientSerial=0; /* an unique ID for each IvyClient */
private SortedMap <Integer,PingCallbackHolder>PingCallbacksTable =
Collections.synchronizedSortedMap(new TreeMap<Integer,PingCallbackHolder>());
-
private Ivy bus;
private Socket socket;
private BufferedReader in;
@@ -133,7 +132,8 @@ public class IvyClient extends Thread {
// int protocol;
private boolean incoming;
- IvyClient() { }
+
+ IvyClient() { } // required for SelfIvyClient FIXME ?!
IvyClient(Ivy bus, Socket socket,int remotePort,boolean incoming) throws IOException {
synchronized(lock) { clientKey=clientSerial++; }