summaryrefslogtreecommitdiff
path: root/jurt/com/sun
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-12-01 13:52:02 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-12-01 13:52:02 +0000
commit919d79eb28444f057cc5b0697801d4261027a37c (patch)
tree8e8afda0b258ad77b39686da975d895ac82b2a2d /jurt/com/sun
parent3564f7329c3b157d418ea62ae2534148bf87d981 (diff)
INTEGRATION: CWS sb23 (1.2.66); FILE MERGED
2006/08/18 16:21:34 sb 1.2.66.3: RESYNC: (1.2-1.3); FILE MERGED 2005/03/17 14:42:32 sb 1.2.66.2: #88601# Minor fix. 2005/03/14 10:55:36 sb 1.2.66.1: #i35277# Further cleanup.
Diffstat (limited to 'jurt/com/sun')
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java b/jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java
index 1559b1902..6ae9b293f 100644
--- a/jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java
+++ b/jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java
@@ -4,9 +4,9 @@
*
* $RCSfile: NativeThreadPool.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 19:01:26 $
+ * last change: $Author: rt $ $Date: 2006-12-01 14:52:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -74,8 +74,9 @@ final class NativeThreadPool implements IThreadPool {
}
public void putJob(Job job) {
- putJob(pool, job.getThreadId().getBytes(), job,
- job.getOperation() != null, !job.isSynchron());
+ putJob(
+ pool, job.getThreadId().getBytes(), job, job.isRequest(),
+ job.isRequest() && !job.isSynchronous());
}
public void dispose(Throwable throwable) {