summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/ThreadPoolCurrent.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceInternal/ThreadPoolCurrent.java')
-rw-r--r--java/src/IceInternal/ThreadPoolCurrent.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/IceInternal/ThreadPoolCurrent.java b/java/src/IceInternal/ThreadPoolCurrent.java
index 864f2ba4aab..06e739bfe85 100644
--- a/java/src/IceInternal/ThreadPoolCurrent.java
+++ b/java/src/IceInternal/ThreadPoolCurrent.java
@@ -25,7 +25,7 @@ public final class ThreadPoolCurrent
public int operation;
public BasicStream stream; // A per-thread stream to be used by event handlers for optimization.
- public boolean
+ public boolean
ioReady()
{
return (_handler._registered & operation) > 0;
@@ -36,13 +36,13 @@ public final class ThreadPoolCurrent
{
_threadPool.ioCompleted(this);
}
-
+
public void
dispatchFromThisThread(DispatchWorkItem workItem)
{
_threadPool.dispatchFromThisThread(workItem);
}
-
+
final ThreadPool _threadPool;
final ThreadPool.EventHandlerThread _thread;
EventHandler _handler;