summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/PICurrent/ClientRequestInterceptor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/PICurrent/ClientRequestInterceptor.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/PICurrent/ClientRequestInterceptor.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/TAO/tests/Portable_Interceptors/PICurrent/ClientRequestInterceptor.cpp b/TAO/tests/Portable_Interceptors/PICurrent/ClientRequestInterceptor.cpp
index 66a253f3074..a6e1556eb00 100644
--- a/TAO/tests/Portable_Interceptors/PICurrent/ClientRequestInterceptor.cpp
+++ b/TAO/tests/Portable_Interceptors/PICurrent/ClientRequestInterceptor.cpp
@@ -28,7 +28,7 @@ ClientRequestInterceptor::name (
}
void
-ClientRequestInterceptor::destroy (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ClientRequestInterceptor::destroy (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
@@ -40,8 +40,7 @@ ClientRequestInterceptor::send_request (
ACE_THROW_SPEC ((CORBA::SystemException,
PortableInterceptor::ForwardRequest))
{
- CORBA::String_var op = ri->operation (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK;
+ CORBA::String_var op = ri->operation ();
if (ACE_OS::strcmp (op.in (), "invoke_me") != 0)
return; // Don't mess with PICurrent if not invoking test method.
@@ -54,7 +53,6 @@ ClientRequestInterceptor::send_request (
CORBA::Any_var data =
ri->get_slot (this->slot_id_
ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
if (!(data.in () >>= number))
{
@@ -79,7 +77,6 @@ ClientRequestInterceptor::send_request (
this->pi_current_->set_slot (this->slot_id_,
new_data
ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
// Now retrieve the data from the RSC again. It should not have
// changed!
@@ -88,7 +85,6 @@ ClientRequestInterceptor::send_request (
CORBA::Any_var data2 =
ri->get_slot (this->slot_id_
ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
if (!(data2.in () >>= number2)
|| number != number2)
@@ -114,7 +110,6 @@ ClientRequestInterceptor::send_request (
ACE_TRY_THROW (CORBA::INTERNAL ());
}
ACE_ENDTRY;
- ACE_CHECK;
ACE_DEBUG ((LM_INFO,
"(%P|%t) Client side RSC/TSC semantics appear "