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 /js/src/Ice/RetryQueue.js | |
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 'js/src/Ice/RetryQueue.js')
-rw-r--r-- | js/src/Ice/RetryQueue.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/Ice/RetryQueue.js b/js/src/Ice/RetryQueue.js index f0638519a06..c33a3d9146d 100644 --- a/js/src/Ice/RetryQueue.js +++ b/js/src/Ice/RetryQueue.js @@ -33,12 +33,12 @@ var RetryQueue = Class({ }, destroy: function() { - this._instance = null; for(var i = 0; i < this._requests.length; ++i) { this._requests[i].destroy(); } this._requests = []; + this._instance = null; }, remove: function(task) { |