diff options
author | Benoit Foucher <benoit@zeroc.com> | 2004-02-21 17:52:26 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2004-02-21 17:52:26 +0000 |
commit | 78e08cb3fec82dfc5c41c1d154b6c96649a5e94c (patch) | |
tree | cb836bf9ac7b12f1e2b7a81dfee6b7445743bde3 /cpp/src | |
parent | Fix (diff) | |
download | ice-78e08cb3fec82dfc5c41c1d154b6c96649a5e94c.tar.bz2 ice-78e08cb3fec82dfc5c41c1d154b6c96649a5e94c.tar.xz ice-78e08cb3fec82dfc5c41c1d154b6c96649a5e94c.zip |
AMI callback __invoke method is now public
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/slice2java/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2java/Gen.cpp b/cpp/src/slice2java/Gen.cpp index 04da4073ff7..c4bd9958835 100644 --- a/cpp/src/slice2java/Gen.cpp +++ b/cpp/src/slice2java/Gen.cpp @@ -3719,7 +3719,7 @@ Slice::Gen::AsyncVisitor::visitOperation(const OperationPtr& p) out << nl << "public abstract void ice_exception(Ice.UserException ex);"; } - out << sp << nl << "protected final void" << nl << "__invoke" << spar << "IceInternal.Reference __ref" + out << sp << nl << "public final void" << nl << "__invoke" << spar << "IceInternal.Reference __ref" << paramsInvoke << "java.util.Map __ctx" << epar; out << sb; out << nl << "try"; |