diff options
Diffstat (limited to 'jurt')
-rw-r--r-- | jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java b/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java index 0ab2a297564f..b71525ba5dd8 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java @@ -106,7 +106,7 @@ public class JobQueue { /** - * Constructs a async job queue with the given thread id which belongs to + * Constructs an async job queue with the given thread id which belongs to * the given sync job queue. * * @param threadId the thread id. @@ -278,13 +278,13 @@ public class JobQueue { * @return the result of the final job (reply). */ Object enter(Object disposeId) throws Throwable { - return enter(0, disposeId); // wait infinitly + return enter(0, disposeId); // wait infinitely } /** * Enters the job queue. * - * @param waitTime the maximum amount of time to wait for a job (0 means wait infinitly). + * @param waitTime the maximum amount of time to wait for a job (0 means wait infinitely). * @param disposeId a dispose id. * @return the result of the final job (reply). */ |