diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-06-22 22:42:16 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-06-22 22:42:16 +0000 |
commit | 66347bf3b5f66e17d5ff179105927320961fc717 (patch) | |
tree | 32811c87c5391614c2bbc6ef98cd1d56be714e8b /java/src/IceInternal/ThreadPool.java | |
parent | dynamic thread pool fixes (diff) | |
download | ice-66347bf3b5f66e17d5ff179105927320961fc717.tar.bz2 ice-66347bf3b5f66e17d5ff179105927320961fc717.tar.xz ice-66347bf3b5f66e17d5ff179105927320961fc717.zip |
removing print statements
Diffstat (limited to 'java/src/IceInternal/ThreadPool.java')
-rw-r--r-- | java/src/IceInternal/ThreadPool.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/java/src/IceInternal/ThreadPool.java b/java/src/IceInternal/ThreadPool.java index bfeed4e0ef7..da9833e623f 100644 --- a/java/src/IceInternal/ThreadPool.java +++ b/java/src/IceInternal/ThreadPool.java @@ -790,16 +790,12 @@ public final class ThreadPool { int load = (int)(_load + 0.5); - //System.out.println("" + _inUse + " " + _running + " " + load + " " + _load); - // // We add one to the load factor because one // additional thread is needed for select(). // if(load + 1 < _running) { - //System.out.println("delete thread!!!"); - assert(_inUse > 0); --_inUse; |