diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-07-17 16:30:43 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-07-17 16:30:43 +0000 |
commit | aacd9f3696b61c5aacd0a385d1eca667092a6ed6 (patch) | |
tree | bdda219d7d4e9b24bad7be38fa66f60be476d6ca /java/demo/IceBox/hello/HelloServiceI.java | |
parent | Removed IceBox two phase initialization. Use Ice.ProgramName in the (diff) | |
download | ice-aacd9f3696b61c5aacd0a385d1eca667092a6ed6.tar.bz2 ice-aacd9f3696b61c5aacd0a385d1eca667092a6ed6.tar.xz ice-aacd9f3696b61c5aacd0a385d1eca667092a6ed6.zip |
Removed IceBox two phase initialization. Use Ice.ProgramName as prefix in
the standard logger.
Diffstat (limited to 'java/demo/IceBox/hello/HelloServiceI.java')
-rw-r--r-- | java/demo/IceBox/hello/HelloServiceI.java | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/java/demo/IceBox/hello/HelloServiceI.java b/java/demo/IceBox/hello/HelloServiceI.java index 28c515f9e2c..a222ea47e38 100644 --- a/java/demo/IceBox/hello/HelloServiceI.java +++ b/java/demo/IceBox/hello/HelloServiceI.java @@ -11,7 +11,7 @@ public class HelloServiceI implements IceBox.Service { public void - init(String name, Ice.Communicator communicator, Ice.Properties properties, String[] args) + start(String name, Ice.Communicator communicator, Ice.Properties properties, String[] args) throws IceBox.FailureException { _adapter = communicator.createObjectAdapter(name + "Adapter"); @@ -21,12 +21,6 @@ public class HelloServiceI implements IceBox.Service } public void - start() - throws IceBox.FailureException - { - } - - public void stop() { _adapter.deactivate(); |