summaryrefslogtreecommitdiffstats
path: root/jurt/test
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-05 09:54:58 +0200
committerNoel Grandin <noel@peralex.com>2014-08-05 11:31:50 +0200
commit0c5f51ebbcb7e22baa913e2012e3dcfcc6cf7897 (patch)
tree3d441110176e37c1a6ba2d15a3653d5023863075 /jurt/test
parentjava: remove unused fields (diff)
downloadcore-0c5f51ebbcb7e22baa913e2012e3dcfcc6cf7897.tar.gz
core-0c5f51ebbcb7e22baa913e2012e3dcfcc6cf7897.zip
java: remove commented out code
Change-Id: I44e2043e5da23bc9421c03e550ef1d8b7ebaad36
Diffstat (limited to 'jurt/test')
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java8
1 files changed, 0 insertions, 8 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 6be7a7bdd06f..f907a3c1cb08 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
@@ -52,23 +52,15 @@ class TestWorkAt implements TestIWorkAt {
if(_sync_thread == null)
_sync_thread = Thread.currentThread();
-// if(_sync_thread != Thread.currentThread())
-// _passedAync = false;
-
if(DEBUG) System.err.println("syncCall:" + _sync_counter + " " + _passedAync + " " + Thread.currentThread());
}
public synchronized void asyncCall() throws Throwable {
-// Thread.sleep(50);
-
++ _async_counter;
if(_async_thread == null)
_async_thread = Thread.currentThread();
-// if(_async_thread != Thread.currentThread())
-// _passedAync = false;
-
if(DEBUG) System.err.println("asyncCall:" + _async_counter + " " + Thread.currentThread());
}