diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-10-22 16:33:13 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-10-22 16:33:13 +0200 |
commit | d8da15a2d803da81b76568d0c8f620f8ed26d0fa (patch) | |
tree | f193067905624d61e0e8a3e6cd7d2498b9bf1873 /js/src/Ice/ConnectionRequestHandler.js | |
parent | Fixed demo dist to allow gradle build of java demos (diff) | |
download | ice-d8da15a2d803da81b76568d0c8f620f8ed26d0fa.tar.bz2 ice-d8da15a2d803da81b76568d0c8f620f8ed26d0fa.tar.xz ice-d8da15a2d803da81b76568d0c8f620f8ed26d0fa.zip |
Fixed ICE-3490: guarantee invocation serialization for proxies which are equal
Diffstat (limited to 'js/src/Ice/ConnectionRequestHandler.js')
-rw-r--r-- | js/src/Ice/ConnectionRequestHandler.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/src/Ice/ConnectionRequestHandler.js b/js/src/Ice/ConnectionRequestHandler.js index 914e620c040..eabfd274ec8 100644 --- a/js/src/Ice/ConnectionRequestHandler.js +++ b/js/src/Ice/ConnectionRequestHandler.js @@ -21,10 +21,10 @@ var ConnectionRequestHandler = Ice.Class({ this._connection = connection; this._compress = compress; }, - // connect : function() - // { - // This request handler is only created after connection binding. - // } + connect : function() + { + return this; + }, update: function(previousHandler, newHandler) { try |