diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-06-17 17:38:16 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-06-17 17:38:16 +0000 |
commit | a136b9dd2b817229a2fa0e4452292c667a4c6e13 (patch) | |
tree | cb11b2249acc67c501fc80943fb27310203544dd /cpp/src/slice2java/Gen.cpp | |
parent | Changed Ice::ServantLocator::deactivate() such that the category is passed (diff) | |
download | ice-a136b9dd2b817229a2fa0e4452292c667a4c6e13.tar.bz2 ice-a136b9dd2b817229a2fa0e4452292c667a4c6e13.tar.xz ice-a136b9dd2b817229a2fa0e4452292c667a4c6e13.zip |
remove extraneous semicolons from generated code
Diffstat (limited to 'cpp/src/slice2java/Gen.cpp')
-rw-r--r-- | cpp/src/slice2java/Gen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/slice2java/Gen.cpp b/cpp/src/slice2java/Gen.cpp index eeb9cc8c537..ed3c4d1d497 100644 --- a/cpp/src/slice2java/Gen.cpp +++ b/cpp/src/slice2java/Gen.cpp @@ -4285,7 +4285,7 @@ Slice::Gen::AsyncVisitor::visitOperation(const OperationPtr& p) } out << nl << "ice_response(" << argsAMI << ");"; out << eb; - out << eb << ';'; + out << eb; close(); } @@ -4314,7 +4314,7 @@ Slice::Gen::AsyncVisitor::visitOperation(const OperationPtr& p) out << sb; out << sp << nl << "void ice_response(" << paramsAMD << ");"; out << sp << nl << "void ice_exception(java.lang.Exception ex);"; - out << eb << ';'; + out << eb; close(); } @@ -4420,7 +4420,7 @@ Slice::Gen::AsyncVisitor::visitOperation(const OperationPtr& p) out << eb; out << eb; - out << eb << ';'; + out << eb; close(); } |