diff options
Diffstat (limited to 'java/demo/IceBox/hello/HelloServiceI.java')
-rw-r--r-- | java/demo/IceBox/hello/HelloServiceI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/demo/IceBox/hello/HelloServiceI.java b/java/demo/IceBox/hello/HelloServiceI.java index a6c6bd22001..040f0321a31 100644 --- a/java/demo/IceBox/hello/HelloServiceI.java +++ b/java/demo/IceBox/hello/HelloServiceI.java @@ -13,7 +13,7 @@ public class HelloServiceI extends Ice.LocalObjectImpl implements IceBox.Service start(String name, Ice.Communicator communicator, String[] args) { _adapter = communicator.createObjectAdapter(name); - _adapter.add(new HelloI(), Ice.Util.stringToIdentity("hello")); + _adapter.add(new HelloI(), communicator.stringToIdentity("hello")); _adapter.activate(); } |