summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/ThreadPoolCurrent.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-08-07 14:05:44 -0230
committerMatthew Newhook <matthew@zeroc.com>2014-08-07 14:05:44 -0230
commite3a672a438635a1173388aea9d7a2d44de358945 (patch)
tree57113ece1dd013c9687468a8dd7cc62c80136b86 /java/src/IceInternal/ThreadPoolCurrent.java
parentICE-5457 added ability to set source address for connections (diff)
downloadice-e3a672a438635a1173388aea9d7a2d44de358945.tar.bz2
ice-e3a672a438635a1173388aea9d7a2d44de358945.tar.xz
ice-e3a672a438635a1173388aea9d7a2d44de358945.zip
Add @Override where possible, and remove trailing white space.
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;