diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-22 06:56:01 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-22 06:56:01 +0000 |
commit | 358e7805bd59b62548851c0b5da3ed770f256405 (patch) | |
tree | ea4e9ed5c7590e61d4a40e341ef39fb385b5b035 /java/test/Ice/operationsAMD/TestCheckedCastI.java | |
parent | Simplify the operations test. (diff) | |
download | ice-358e7805bd59b62548851c0b5da3ed770f256405.tar.bz2 ice-358e7805bd59b62548851c0b5da3ed770f256405.tar.xz ice-358e7805bd59b62548851c0b5da3ed770f256405.zip |
Simplified operations test.
Diffstat (limited to 'java/test/Ice/operationsAMD/TestCheckedCastI.java')
-rw-r--r-- | java/test/Ice/operationsAMD/TestCheckedCastI.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/java/test/Ice/operationsAMD/TestCheckedCastI.java b/java/test/Ice/operationsAMD/TestCheckedCastI.java index ffecdc06143..3be7691e0ac 100644 --- a/java/test/Ice/operationsAMD/TestCheckedCastI.java +++ b/java/test/Ice/operationsAMD/TestCheckedCastI.java @@ -15,10 +15,11 @@ public final class TestCheckedCastI extends Test._TestCheckedCastDisp cb.ice_response(_ctx); } - public void - setContext(java.util.Map ctx) + public boolean + ice_isA(String s, Ice.Current current) { - _ctx = ctx; + _ctx = current.ctx; + return super.ice_isA(s, current); } private java.util.Map _ctx; |