summaryrefslogtreecommitdiff
path: root/TAO/tao/ClientRequestInfo.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/ClientRequestInfo.inl')
-rw-r--r--TAO/tao/ClientRequestInfo.inl23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/tao/ClientRequestInfo.inl b/TAO/tao/ClientRequestInfo.inl
index 0fed4cfe47c..f88e8ec698f 100644
--- a/TAO/tao/ClientRequestInfo.inl
+++ b/TAO/tao/ClientRequestInfo.inl
@@ -22,29 +22,6 @@ TAO_ClientRequestInfo::response_expected (CORBA::Boolean flag)
}
ACE_INLINE void
-TAO_ClientRequestInfo::reply_status (int invoke_status)
-{
- switch (invoke_status)
- {
- case TAO_INVOKE_OK:
- this->reply_status_ = PortableInterceptor::SUCCESSFUL;
- break;
- case TAO_INVOKE_RESTART:
- if (this->invocation_->received_location_forward ())
- this->reply_status_ = PortableInterceptor::LOCATION_FORWARD;
- else
- this->reply_status_ = PortableInterceptor::TRANSPORT_RETRY;
- break;
- default:
- // We should only get here if the invocation status is
- // TAO_INVOKE_EXCEPTION, i.e. a CORBA::SystemException, so set
- // the appropriate reply status.
- this->reply_status_ = PortableInterceptor::SYSTEM_EXCEPTION;
- break;
- }
-}
-
-ACE_INLINE void
TAO_ClientRequestInfo::forward_reference (
PortableInterceptor::ForwardRequest &)
{