summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java b/jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java
index e63be6f7208e..94e233e6f5d6 100644
--- a/jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java
+++ b/jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java
@@ -34,9 +34,6 @@ class TestWorkAt implements TestIWorkAt {
int _sync_counter;
int _async_counter;
- private Thread _sync_thread;
- private Thread _async_thread;
-
private boolean _passedAsync = true;
boolean _notified = false;
@@ -49,18 +46,12 @@ class TestWorkAt implements TestIWorkAt {
if(_async_counter != MESSAGES)
_passedAsync = false;
- if(_sync_thread == null)
- _sync_thread = Thread.currentThread();
-
if(DEBUG) System.err.println("syncCall:" + _sync_counter + " " + _passedAsync + " " + Thread.currentThread());
}
public synchronized void asyncCall() throws Throwable {
++ _async_counter;
- if(_async_thread == null)
- _async_thread = Thread.currentThread();
-
if(DEBUG) System.err.println("asyncCall:" + _async_counter + " " + Thread.currentThread());
}