jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java |    9 
---------
 1 file changed, 9 deletions(-)

New commits:
commit 8383055a258676726b589c8c912c19b30addbedc
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Wed Mar 23 08:34:05 2016 +0100

    Unused private fields
    
    Change-Id: I69fd266df5cfb5392d1f2b5501bfb0b9e5f2cd83

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 e63be6f..94e233e 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());
     }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to