diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-07-27 19:30:37 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-07-27 19:30:37 -0400 |
commit | 883edab4361e58957796f25d5fc55cfb41f0f6ea (patch) | |
tree | fc90adc372b66bf0becf4c0912794c64af250a29 /js/test/Ice/operationsBidir/Client.js | |
parent | ICE-7242 - Cross test updates (diff) | |
download | ice-883edab4361e58957796f25d5fc55cfb41f0f6ea.tar.bz2 ice-883edab4361e58957796f25d5fc55cfb41f0f6ea.tar.xz ice-883edab4361e58957796f25d5fc55cfb41f0f6ea.zip |
Deprecate Communicator::stringToIdentity and identityToString
Diffstat (limited to 'js/test/Ice/operationsBidir/Client.js')
-rw-r--r-- | js/test/Ice/operationsBidir/Client.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/test/Ice/operationsBidir/Client.js b/js/test/Ice/operationsBidir/Client.js index 82d0add0ffe..1db516e498e 100644 --- a/js/test/Ice/operationsBidir/Client.js +++ b/js/test/Ice/operationsBidir/Client.js @@ -25,11 +25,11 @@ { if(amd) { - adapter.add(new AMDMyDerivedClassI(), communicator.stringToIdentity("test")); + adapter.add(new AMDMyDerivedClassI(), Ice.stringToIdentity("test")); } else { - adapter.add(new MyDerivedClassI(), communicator.stringToIdentity("test")); + adapter.add(new MyDerivedClassI(), Ice.stringToIdentity("test")); } var base = communicator.stringToProxy("test:default -p 12010"); return base.ice_getConnection().then( |