diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-23 08:34:05 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-23 08:34:05 +0100 |
commit | 8383055a258676726b589c8c912c19b30addbedc (patch) | |
tree | 92525cbfbb0566e88d9c3588e454e2214c4833d4 /jurt/test/com/sun | |
parent | 26012ae8f65ca16e584b3688b0f1f9e76e97db84 (diff) |
Unused private fields
Change-Id: I69fd266df5cfb5392d1f2b5501bfb0b9e5f2cd83
Diffstat (limited to 'jurt/test/com/sun')
-rw-r--r-- | jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java | 9 |
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()); } |