diff options
author | Jose <jose@zeroc.com> | 2017-04-10 11:52:28 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-04-10 11:52:28 +0200 |
commit | ff85ad10acbd3ef24be25ad333de7cbf2880ff71 (patch) | |
tree | feb950f850905aca0aa9f1a6e2a0c1bb4c759516 /cpp/src/slice2java | |
parent | Fixed signature of IceBox Service factory function in C++11 (diff) | |
download | ice-ff85ad10acbd3ef24be25ad333de7cbf2880ff71.tar.bz2 ice-ff85ad10acbd3ef24be25ad333de7cbf2880ff71.tar.xz ice-ff85ad10acbd3ef24be25ad333de7cbf2880ff71.zip |
Fix (ICE-7762) - Change dispatch bool return value
Diffstat (limited to 'cpp/src/slice2java')
-rw-r--r-- | cpp/src/slice2java/GenCompat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2java/GenCompat.cpp b/cpp/src/slice2java/GenCompat.cpp index ff344f57bf8..28d724f8646 100644 --- a/cpp/src/slice2java/GenCompat.cpp +++ b/cpp/src/slice2java/GenCompat.cpp @@ -1409,7 +1409,7 @@ Slice::JavaCompatVisitor::writeDispatchAndMarshalling(Output& out, const ClassDe { out << nl << "inS.writeEmptyParams();"; } - out << nl << "return false;"; + out << nl << "return true;"; out << eb; } @@ -1501,7 +1501,7 @@ Slice::JavaCompatVisitor::writeDispatchAndMarshalling(Output& out, const ClassDe out << ", "; } out << "current);"; - out << nl << "return true;"; + out << nl << "return false;"; out << eb; } |