diff options
Diffstat (limited to 'TAO/tests/MT_Server')
-rw-r--r-- | TAO/tests/MT_Server/test_i.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/MT_Server/test_i.h | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/TAO/tests/MT_Server/test_i.cpp b/TAO/tests/MT_Server/test_i.cpp index 8bb3e551ecb..80aa987cc4a 100644 --- a/TAO/tests/MT_Server/test_i.cpp +++ b/TAO/tests/MT_Server/test_i.cpp @@ -12,7 +12,6 @@ ACE_RCSID(MT_Server, test_i, "$Id$") CORBA::Long Simple_Server_i::test_method (CORBA::Long x) - ACE_THROW_SPEC ((CORBA::SystemException)) { if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG, "Request in thread %t\n")); @@ -23,7 +22,6 @@ Simple_Server_i::test_method (CORBA::Long x) void Simple_Server_i::shutdown (void) - ACE_THROW_SPEC ((CORBA::SystemException)) { this->orb_->shutdown (0); } diff --git a/TAO/tests/MT_Server/test_i.h b/TAO/tests/MT_Server/test_i.h index 8934973a678..d1113ac50d7 100644 --- a/TAO/tests/MT_Server/test_i.h +++ b/TAO/tests/MT_Server/test_i.h @@ -31,11 +31,9 @@ public: // ctor // = The Simple_Server methods. - CORBA::Long test_method (CORBA::Long x) - ACE_THROW_SPEC ((CORBA::SystemException)); + CORBA::Long test_method (CORBA::Long x); - void shutdown (void) - ACE_THROW_SPEC ((CORBA::SystemException)); + void shutdown (void); private: CORBA::ORB_var orb_; |