summaryrefslogtreecommitdiff
path: root/java/test/Ice/operationsAMD/TestCheckedCastI.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2005-08-22 06:56:01 +0000
committerMatthew Newhook <matthew@zeroc.com>2005-08-22 06:56:01 +0000
commit358e7805bd59b62548851c0b5da3ed770f256405 (patch)
treeea4e9ed5c7590e61d4a40e341ef39fb385b5b035 /java/test/Ice/operationsAMD/TestCheckedCastI.java
parentSimplify the operations test. (diff)
downloadice-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.java7
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;