diff options
Diffstat (limited to 'java/demo/Ice/context/ContextI.java')
-rw-r--r-- | java/demo/Ice/context/ContextI.java | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/java/demo/Ice/context/ContextI.java b/java/demo/Ice/context/ContextI.java deleted file mode 100644 index 5830c20879f..00000000000 --- a/java/demo/Ice/context/ContextI.java +++ /dev/null @@ -1,38 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 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 ContextI extends _ContextDisp -{ - @Override - public void - call(Ice.Current current) - { - System.out.print("Type = "); - String type = current.ctx.get("type"); - if(type != null) - { - System.out.print(type); - } - else - { - System.out.print("None"); - } - System.out.println(); - } - - @Override - public void - shutdown(Ice.Current current) - { - System.out.println("Shutting down..."); - current.adapter.getCommunicator().shutdown(); - } -} |