aboutsummaryrefslogtreecommitdiff
path: root/src/Protocol.java
diff options
context:
space:
mode:
authorjestin2012-05-13 08:54:38 +0000
committerjestin2012-05-13 08:54:38 +0000
commite854a58a81ec90e419a4b3effa5a83caac05df90 (patch)
tree16eb84a66b62ff38e744c8cd474df81561436b9f /src/Protocol.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/Protocol.java')
-rw-r--r--src/Protocol.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Protocol.java b/src/Protocol.java
index a643e39..9751661 100644
--- a/src/Protocol.java
+++ b/src/Protocol.java
@@ -1,5 +1,6 @@
/**
- * the Protocol magic numbers and chars
+ * the Protocol magic numbers and chars.
+ *
* @author Yannick Jestin
* @author <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
*
@@ -30,7 +31,6 @@ enum Protocol {
final static char NEWLINE = '\n';
final static int PROTOCOLVERSION = 3 ;
final static int PROTOCOLMINIMUM = 3 ;
- final static int MI = 3 ;
private int value = -1;
private Protocol(int v) {this.value = v;}