diff options
Diffstat (limited to 'protobuf/demo/java/HelloI.java')
-rw-r--r-- | protobuf/demo/java/HelloI.java | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/protobuf/demo/java/HelloI.java b/protobuf/demo/java/HelloI.java deleted file mode 100644 index 39319da6db9..00000000000 --- a/protobuf/demo/java/HelloI.java +++ /dev/null @@ -1,27 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice Protobuf is licensed to you under the terms -// described in the ICE_PROTOBUF_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(); - } -} |