summaryrefslogtreecommitdiff
path: root/TAO/tests/Object_Loader/Loader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Object_Loader/Loader.cpp')
-rw-r--r--TAO/tests/Object_Loader/Loader.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/TAO/tests/Object_Loader/Loader.cpp b/TAO/tests/Object_Loader/Loader.cpp
index 73ae41e115f..4cd15761689 100644
--- a/TAO/tests/Object_Loader/Loader.cpp
+++ b/TAO/tests/Object_Loader/Loader.cpp
@@ -20,26 +20,21 @@ Loader::create_object (CORBA::ORB_ptr orb,
{
CORBA::Object_var obj =
orb->resolve_initial_references ("RootPOA" ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
PortableServer::POA_var poa =
PortableServer::POA::_narrow (obj.in () ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
PortableServer::POAManager_var mgr =
- poa->the_POAManager (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ poa->the_POAManager ();
- mgr->activate (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ mgr->activate ();
Test_i *test;
ACE_NEW_RETURN (test, Test_i (poa.in ()),
CORBA::Object::_nil ());
PortableServer::ServantBase_var tmp = test;
- obj = test->_this (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
+ obj = test->_this ();
return obj._retn ();
}