diff options
Diffstat (limited to 'java/demo/Ice/protobuf/HelloI.java')
-rw-r--r-- | java/demo/Ice/protobuf/HelloI.java | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/java/demo/Ice/protobuf/HelloI.java b/java/demo/Ice/protobuf/HelloI.java deleted file mode 100644 index 4fe9cf4e5a2..00000000000 --- a/java/demo/Ice/protobuf/HelloI.java +++ /dev/null @@ -1,26 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -import Demo.*; - -public class HelloI extends _HelloDisp -{ - public void - sayHello(tutorial.PersonPB.Person p, Ice.Current current) - { - System.out.println("Hello World from " + p); - } - - public void - shutdown(Ice.Current current) - { - System.out.println("Shutting down..."); - current.adapter.getCommunicator().shutdown(); - } -} |