summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/TAO.cpp')
-rw-r--r--TAO/tao/TAO.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/TAO/tao/TAO.cpp b/TAO/tao/TAO.cpp
index 5bddd279377..90ee499c1eb 100644
--- a/TAO/tao/TAO.cpp
+++ b/TAO/tao/TAO.cpp
@@ -160,23 +160,6 @@ TAO_ORB_Manager::activate (PortableServer::Servant servant,
return str;
}
-void
-TAO_ORB_Manager::deactivate (const char *id,
- CORBA_Environment &ACE_TRY_ENV)
-{
- CORBA::Object_var object =
- this->orb_->string_to_object (id,
- ACE_TRY_ENV);
- ACE_CHECK;
-
- PortableServer::ObjectId_var object_id = this->poa_->reference_to_id (object.in (),
- ACE_TRY_ENV);
- ACE_CHECK;
-
- this->poa_->deactivate_object (object_id.in (),
- ACE_TRY_ENV);
-}
-
// Activate the object with the object_name under the child POA.
CORBA::String
@@ -212,23 +195,6 @@ TAO_ORB_Manager::activate_under_child_poa (const char* object_name,
return str;
}
-void
-TAO_ORB_Manager::deactivate_under_child_poa (const char *id,
- CORBA_Environment &ACE_TRY_ENV)
-{
- CORBA::Object_var object =
- this->orb_->string_to_object (id,
- ACE_TRY_ENV);
- ACE_CHECK;
-
- PortableServer::ObjectId_var object_id = this->child_poa_->reference_to_id (object.in (),
- ACE_TRY_ENV);
- ACE_CHECK;
-
- this->child_poa_->deactivate_object (object_id.in (),
- ACE_TRY_ENV);
-}
-
// Enter the ORB event loop.
int