summaryrefslogtreecommitdiff
path: root/jurt
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-11 11:50:50 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-11 11:50:50 +0100
commitb2d53cc003d070181d80af92d1568de1bdcfe73b (patch)
tree80daaa6349d55cebc1f828465285fa25c2d927fc /jurt
parentfeb480d780215555541a264701ea811a5002accc (diff)
typo
Change-Id: I8ae443a69aab715a59f347a2de5a36b458a934f5
Diffstat (limited to 'jurt')
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java10
1 files changed, 5 insertions, 5 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 e753c651eb6f..e63be6f7208e 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
@@ -37,7 +37,7 @@ class TestWorkAt implements TestIWorkAt {
private Thread _sync_thread;
private Thread _async_thread;
- private boolean _passedAync = true;
+ private boolean _passedAsync = true;
boolean _notified = false;
public synchronized void syncCall() throws Throwable {
@@ -47,12 +47,12 @@ class TestWorkAt implements TestIWorkAt {
// defer the check until passedAsyncTest and assert here
assertEquals(MESSAGES, _async_counter);
if(_async_counter != MESSAGES)
- _passedAync = false;
+ _passedAsync = false;
if(_sync_thread == null)
_sync_thread = Thread.currentThread();
- if(DEBUG) System.err.println("syncCall:" + _sync_counter + " " + _passedAync + " " + Thread.currentThread());
+ if(DEBUG) System.err.println("syncCall:" + _sync_counter + " " + _passedAsync + " " + Thread.currentThread());
}
public synchronized void asyncCall() throws Throwable {
@@ -81,7 +81,7 @@ class TestWorkAt implements TestIWorkAt {
public synchronized boolean passedAsyncTest() {
assertEquals(MESSAGES, _sync_counter);
- assertTrue(_passedAync);
- return _passedAync && (_sync_counter == MESSAGES);
+ assertTrue(_passedAsync);
+ return _passedAsync && (_sync_counter == MESSAGES);
}
}