summaryrefslogtreecommitdiff
path: root/TAO/tao/Utils/Implicit_Deactivator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Utils/Implicit_Deactivator.cpp')
-rw-r--r--TAO/tao/Utils/Implicit_Deactivator.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/TAO/tao/Utils/Implicit_Deactivator.cpp b/TAO/tao/Utils/Implicit_Deactivator.cpp
index b1799cf088b..1cdb4fc3087 100644
--- a/TAO/tao/Utils/Implicit_Deactivator.cpp
+++ b/TAO/tao/Utils/Implicit_Deactivator.cpp
@@ -9,20 +9,16 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL
void
TAO::Utils::Implicit_Deactivation_Functor::operator () (
- PortableServer::ServantBase * servant)
- ACE_THROW_SPEC (())
+ PortableServer::ServantBase * servant) throw ()
{
try
{
- PortableServer::POA_var poa (servant->_default_POA (
- ));
+ PortableServer::POA_var poa (servant->_default_POA ());
- PortableServer::ObjectId_var id (poa->servant_to_id (servant
- ));
+ PortableServer::ObjectId_var id (poa->servant_to_id (servant));
- poa->deactivate_object (id.in()
- );
+ poa->deactivate_object (id.in());
}
catch (...)
{