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 /cs/src/Ice/RetryQueue.cs | |
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 'cs/src/Ice/RetryQueue.cs')
-rw-r--r-- | cs/src/Ice/RetryQueue.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cs/src/Ice/RetryQueue.cs b/cs/src/Ice/RetryQueue.cs index fe7006fe204..03ca716e542 100644 --- a/cs/src/Ice/RetryQueue.cs +++ b/cs/src/Ice/RetryQueue.cs @@ -62,13 +62,13 @@ namespace IceInternal { lock(this) { - _instance = null; foreach(RetryTask task in _requests.Keys) { _instance.timer().cancel(task); task.destroy(); } _requests.Clear(); + _instance = null; } } |