diff options
author | Bernard Normier <bernard@zeroc.com> | 2008-01-09 18:58:07 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2008-01-09 18:58:07 -0500 |
commit | 64494197795f06cd0cdf8fba3eea787efed5e78d (patch) | |
tree | 43b8de118b1ad8cffc8307458afc76b86b6c82b5 /java/src/IceUtil/Cache.java | |
parent | Removed IceUtilInternal calls from demos (diff) | |
download | ice-64494197795f06cd0cdf8fba3eea787efed5e78d.tar.bz2 ice-64494197795f06cd0cdf8fba3eea787efed5e78d.tar.xz ice-64494197795f06cd0cdf8fba3eea787efed5e78d.zip |
Moved various classes from IceUtil to IceUtilInternal
Diffstat (limited to 'java/src/IceUtil/Cache.java')
-rw-r--r-- | java/src/IceUtil/Cache.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/IceUtil/Cache.java b/java/src/IceUtil/Cache.java index 0ba59b91b35..9b07cbab726 100644 --- a/java/src/IceUtil/Cache.java +++ b/java/src/IceUtil/Cache.java @@ -118,7 +118,7 @@ public class Cache } Object obj = null; - CountDownLatch latch = null; + java.util.concurrent.CountDownLatch latch = null; } private Object @@ -127,7 +127,7 @@ public class Cache for(;;) { CacheValue val = null; - CountDownLatch latch = null; + java.util.concurrent.CountDownLatch latch = null; synchronized(_map) { @@ -148,7 +148,7 @@ public class Cache // // The first queued thread creates the latch // - val.latch = new CountDownLatch(1); + val.latch = new java.util.concurrent.CountDownLatch(1); } latch = val.latch; } |