summaryrefslogtreecommitdiff
path: root/java/src/Ice/ObjectPrxHelperBase.java
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2006-10-30 16:02:41 +0000
committerBernard Normier <bernard@zeroc.com>2006-10-30 16:02:41 +0000
commit732f8d8636fb8eef0f1268b8e0b61a60634ee4a5 (patch)
tree3f2941406ec58c5ebbc9c3196053f58c551ff806 /java/src/Ice/ObjectPrxHelperBase.java
parentSmall enhancement to ice_invoke_async (diff)
downloadice-732f8d8636fb8eef0f1268b8e0b61a60634ee4a5.tar.bz2
ice-732f8d8636fb8eef0f1268b8e0b61a60634ee4a5.tar.xz
ice-732f8d8636fb8eef0f1268b8e0b61a60634ee4a5.zip
Fixed bug from previous commit
Diffstat (limited to 'java/src/Ice/ObjectPrxHelperBase.java')
-rw-r--r--java/src/Ice/ObjectPrxHelperBase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/Ice/ObjectPrxHelperBase.java b/java/src/Ice/ObjectPrxHelperBase.java
index da2a2ea59d3..6c6a977d843 100644
--- a/java/src/Ice/ObjectPrxHelperBase.java
+++ b/java/src/Ice/ObjectPrxHelperBase.java
@@ -268,7 +268,7 @@ public class ObjectPrxHelperBase implements ObjectPrx
ice_invoke_async(AMI_Object_ice_invoke cb, String operation, OperationMode mode, byte[] inParams)
{
__checkTwowayOnly("ice_invoke_async");
- ice_invoke_async(cb, operation, mode, inParams, null);
+ cb.__invoke(this, operation, mode, inParams, null);
}
public final void
@@ -280,7 +280,7 @@ public class ObjectPrxHelperBase implements ObjectPrx
context = _emptyContext;
}
__checkTwowayOnly("ice_invoke_async");
- ice_invoke_async(cb, operation, mode, inParams, context);
+ cb.__invoke(this, operation, mode, inParams, context);
}
public final Identity