aboutsummaryrefslogtreecommitdiff
path: root/src/Ivy.java
diff options
context:
space:
mode:
authorjestin2002-12-27 17:17:20 +0000
committerjestin2002-12-27 17:17:20 +0000
commit5a44dbef7c997b6e09a565306c60e7146f0f8c2b (patch)
tree682d9cf3854d06f11757d2ad9eb60ef3d45faf9a /src/Ivy.java
parent21db182d2ba046114e5a48893e32335e7990f8f5 (diff)
downloadivy-java-5a44dbef7c997b6e09a565306c60e7146f0f8c2b.zip
ivy-java-5a44dbef7c997b6e09a565306c60e7146f0f8c2b.tar.gz
ivy-java-5a44dbef7c997b6e09a565306c60e7146f0f8c2b.tar.bz2
ivy-java-5a44dbef7c997b6e09a565306c60e7146f0f8c2b.tar.xz
Passage à 1.2.2
Diffstat (limited to 'src/Ivy.java')
-rwxr-xr-xsrc/Ivy.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Ivy.java b/src/Ivy.java
index 5e149ec..5c11066 100755
--- a/src/Ivy.java
+++ b/src/Ivy.java
@@ -60,7 +60,7 @@ public class Ivy implements Runnable {
* the library version, useful for development purposes only, when java is
* invoked with -DIVY_DEBUG
*/
- public static final String libVersion ="1.2.1";
+ public static final String libVersion ="1.2.2";
private boolean debug;
private static int serial=0; /* an unique ID for each regexp */
@@ -431,6 +431,7 @@ public class Ivy implements Runnable {
* the service socket thread reader main loop
*/
public void run() {
+ // System.out.println("Ivy service Thread started"); // THREADDEBUG
Thread thisThread=Thread.currentThread();
while(thisThread==serverThread){
try {
@@ -447,6 +448,7 @@ public class Ivy implements Runnable {
}
}
traceDebug("stopping the server Thread");
+ // System.out.println("Ivy service Thread stopped"); // THREADDEBUG
}