diff options
author | Jose <jose@zeroc.com> | 2014-10-23 17:40:46 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-10-23 17:40:46 +0200 |
commit | c159f0ba2a4320883d70695ed50f5499c3ec18bd (patch) | |
tree | 89401fbe9a877844b972ebdab438bd472c58ddfc /js/src/Ice/LocatorTable.js | |
parent | ICE-5772 Remove .depend folder on make clean (diff) | |
download | ice-c159f0ba2a4320883d70695ed50f5499c3ec18bd.tar.bz2 ice-c159f0ba2a4320883d70695ed50f5499c3ec18bd.tar.xz ice-c159f0ba2a4320883d70695ed50f5499c3ec18bd.zip |
Fixed (ICE-5768) - JavaScript HashMap improvement
Diffstat (limited to 'js/src/Ice/LocatorTable.js')
-rw-r--r-- | js/src/Ice/LocatorTable.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/js/src/Ice/LocatorTable.js b/js/src/Ice/LocatorTable.js index 6fd6dc47ffe..ac7d6041b11 100644 --- a/js/src/Ice/LocatorTable.js +++ b/js/src/Ice/LocatorTable.js @@ -17,8 +17,7 @@ var LocatorTable = Ice.Class({ __init__: function() { this._adapterEndpointsTable = new HashMap(); // Map<String, EndpointTableEntry> - this._objectTable = new HashMap(); // Map<Ice.Identity, ReferenceTableEntry> - this._objectTable.keyComparator = HashMap.compareEquals; + this._objectTable = new HashMap(HashMap.compareEquals); // Map<Ice.Identity, ReferenceTableEntry> }, clear: function() { |