diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-07-07 09:37:08 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-07-07 09:37:08 -0230 |
commit | 4343b1fa332495b939371634ec1f1134229d3950 (patch) | |
tree | 92ec85b672a2133db1a041e8c873003325bee218 /js/src | |
parent | ICE-6644 added missing call to handler.connect in RequestHandlerFactory.getRe... (diff) | |
download | ice-4343b1fa332495b939371634ec1f1134229d3950.tar.bz2 ice-4343b1fa332495b939371634ec1f1134229d3950.tar.xz ice-4343b1fa332495b939371634ec1f1134229d3950.zip |
ICE-6643 Fixed typo initial commit
Diffstat (limited to 'js/src')
-rw-r--r-- | js/src/Ice/ConnectRequestHandler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/Ice/ConnectRequestHandler.js b/js/src/Ice/ConnectRequestHandler.js index 5edeaccec98..80438239c17 100644 --- a/js/src/Ice/ConnectRequestHandler.js +++ b/js/src/Ice/ConnectRequestHandler.js @@ -256,7 +256,7 @@ var ConnectRequestHandler = Ice.Class({ if(this._reference.getCacheConnection() && exception === null) { this._requestHandler = new ConnectionRequestHandler(this._reference, this._connection, this._compress); - for(var k = 0; i < this._proxies.length; ++k) + for(var k = 0; k < this._proxies.length; ++k) { this._proxies[k].__updateRequestHandler(this, this._requestHandler); } |