diff options
Diffstat (limited to 'java/test/Ice/inheritance/CCI.java')
-rw-r--r-- | java/test/Ice/inheritance/CCI.java | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/java/test/Ice/inheritance/CCI.java b/java/test/Ice/inheritance/CCI.java deleted file mode 100644 index 1d88806b959..00000000000 --- a/java/test/Ice/inheritance/CCI.java +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2014 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. -// -// ********************************************************************** - -package test.Ice.inheritance; - -import test.Ice.inheritance.Test.MA.CAPrx; -import test.Ice.inheritance.Test.MA.CC; -import test.Ice.inheritance.Test.MA.CCPrx; -import test.Ice.inheritance.Test.MB.CBPrx; - -public final class CCI extends CC -{ - public - CCI() - { - } - - @Override - public CAPrx - caop(CAPrx p, Ice.Current current) - { - return p; - } - - @Override - public CCPrx - ccop(CCPrx p, Ice.Current current) - { - return p; - } - - @Override - public CBPrx - cbop(CBPrx p, Ice.Current current) - { - return p; - } -} |