summaryrefslogtreecommitdiff
path: root/js/src/Ice/Communicator.js
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-07-27 19:30:37 -0400
committerBernard Normier <bernard@zeroc.com>2016-07-27 19:30:37 -0400
commit883edab4361e58957796f25d5fc55cfb41f0f6ea (patch)
treefc90adc372b66bf0becf4c0912794c64af250a29 /js/src/Ice/Communicator.js
parentICE-7242 - Cross test updates (diff)
downloadice-883edab4361e58957796f25d5fc55cfb41f0f6ea.tar.bz2
ice-883edab4361e58957796f25d5fc55cfb41f0f6ea.tar.xz
ice-883edab4361e58957796f25d5fc55cfb41f0f6ea.zip
Deprecate Communicator::stringToIdentity and identityToString
Diffstat (limited to 'js/src/Ice/Communicator.js')
-rw-r--r--js/src/Ice/Communicator.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/Ice/Communicator.js b/js/src/Ice/Communicator.js
index f80d3e56576..9d1d7ed3102 100644
--- a/js/src/Ice/Communicator.js
+++ b/js/src/Ice/Communicator.js
@@ -70,11 +70,11 @@ var Communicator = Ice.Class({
},
stringToIdentity: function(s)
{
- return this._instance.stringToIdentity(s);
+ return Ice.stringToIdentity(s);
},
identityToString: function(ident)
{
- return this._instance.identityToString(ident);
+ return Ice.identityToString(ident);
},
createObjectAdapter: function(name)
{