diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-09-25 14:41:29 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-09-25 14:41:29 +0200 |
commit | 4cc9052ea99fc4923ea113cca480724cda31435c (patch) | |
tree | a756f712d568a6b3127fbd9c79674bdc4197956d /java/src/IceInternal/RetryQueue.java | |
parent | Fixed IceSSL NullReferenceException in C# (diff) | |
download | ice-4cc9052ea99fc4923ea113cca480724cda31435c.tar.bz2 ice-4cc9052ea99fc4923ea113cca480724cda31435c.tar.xz ice-4cc9052ea99fc4923ea113cca480724cda31435c.zip |
Fixed previous fix for adapterDeactivation test warnings
Diffstat (limited to 'java/src/IceInternal/RetryQueue.java')
-rw-r--r-- | java/src/IceInternal/RetryQueue.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceInternal/RetryQueue.java b/java/src/IceInternal/RetryQueue.java index 232ee1568cd..4d6f8144410 100644 --- a/java/src/IceInternal/RetryQueue.java +++ b/java/src/IceInternal/RetryQueue.java @@ -31,12 +31,12 @@ public class RetryQueue synchronized public void destroy() { - _instance = null; for(RetryTask task : _requests) { task.destroy(); } _requests.clear(); + _instance = null; } synchronized boolean |