diff options
author | Michi Henning <michi@zeroc.com> | 2004-08-31 04:36:28 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-08-31 04:36:28 +0000 |
commit | b48723e3d4ba8b7d3626c052ff398697731370a2 (patch) | |
tree | c038aa8cea773a7ae45dc511ea5548730801884b /java/test/Ice/inheritance/CBI.java | |
parent | initial check-in (diff) | |
download | ice-b48723e3d4ba8b7d3626c052ff398697731370a2.tar.bz2 ice-b48723e3d4ba8b7d3626c052ff398697731370a2.tar.xz ice-b48723e3d4ba8b7d3626c052ff398697731370a2.zip |
Deprecation of global Slice definitions.
Diffstat (limited to 'java/test/Ice/inheritance/CBI.java')
-rw-r--r-- | java/test/Ice/inheritance/CBI.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/test/Ice/inheritance/CBI.java b/java/test/Ice/inheritance/CBI.java index 6ede8b568b1..d0a2056aa67 100644 --- a/java/test/Ice/inheritance/CBI.java +++ b/java/test/Ice/inheritance/CBI.java @@ -7,21 +7,21 @@ // // ********************************************************************** -public final class CBI extends MB.CB +public final class CBI extends Test.MB.CB { public CBI() { } - public MA.CAPrx - caop(MA.CAPrx p, Ice.Current current) + public Test.MA.CAPrx + caop(Test.MA.CAPrx p, Ice.Current current) { return p; } - public MB.CBPrx - cbop(MB.CBPrx p, Ice.Current current) + public Test.MB.CBPrx + cbop(Test.MB.CBPrx p, Ice.Current current) { return p; } |