diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2016-03-11 01:33:14 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2016-03-11 13:47:43 +0100 |
commit | 69db01422057771d462287e84352b48fc773a845 (patch) | |
tree | 55e4c44c4bee74cc928c621bb4e47d9563bd1c2d /jurt/com/sun/star | |
parent | a86734ef31b18eb07747a6b12a8fc55d3992c2ef (diff) |
ThreadPool doesn't exist - etiher point to IThreadPool or implementation
Change-Id: I96e1607945802d06dcc01b64267117d98f9a9994
Diffstat (limited to 'jurt/com/sun/star')
-rw-r--r-- | jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java | 2 | ||||
-rw-r--r-- | jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java b/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java index c43bcfa465f7..3373c9236603 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java @@ -22,7 +22,7 @@ package com.sun.star.lib.uno.environments.remote; * This class implements a java thread pool. * * @see com.sun.star.uno.UnoRuntime - * @see com.sun.star.lib.uno.environments.remote.ThreadPool + * @see com.sun.star.lib.uno.environments.remote.NativeThreadPool * @see com.sun.star.lib.uno.environments.remote.IThreadPool * @see com.sun.star.lib.uno.environments.remote.Job * @see com.sun.star.lib.uno.environments.remote.JobQueue 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 592bc323337a..57dc5facb00b 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java @@ -31,7 +31,7 @@ import com.sun.star.lang.DisposedException; * (put by <code>putjob</code>) into the async queue, which is only * known by the sync queue.</p> * - * @see com.sun.star.lib.uno.environments.remote.ThreadPool + * @see com.sun.star.lib.uno.environments.remote.IThreadPool * @see com.sun.star.lib.uno.environments.remote.Job * @see com.sun.star.lib.uno.environments.remote.ThreadId * @since UDK1.0 |