summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/CSD_Strategy/TestServant/Foo_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/CSD_Strategy/TestServant/Foo_i.cpp')
-rw-r--r--TAO/performance-tests/CSD_Strategy/TestServant/Foo_i.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/TAO/performance-tests/CSD_Strategy/TestServant/Foo_i.cpp b/TAO/performance-tests/CSD_Strategy/TestServant/Foo_i.cpp
index a7e4878ef11..195be3b7c02 100644
--- a/TAO/performance-tests/CSD_Strategy/TestServant/Foo_i.cpp
+++ b/TAO/performance-tests/CSD_Strategy/TestServant/Foo_i.cpp
@@ -23,7 +23,6 @@ Foo_i::~Foo_i()
void
Foo_i::op1(void)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[0]++;
}
@@ -31,7 +30,6 @@ Foo_i::op1(void)
void
Foo_i::op2(CORBA::Long value)
- ACE_THROW_SPEC((CORBA::SystemException))
{
ACE_UNUSED_ARG(value);
this->op_count_[1]++;
@@ -40,7 +38,6 @@ Foo_i::op2(CORBA::Long value)
CORBA::Long
Foo_i::op3(CORBA::Long value)
- ACE_THROW_SPEC((CORBA::SystemException))
{
this->op_count_[2]++;
return value;
@@ -49,7 +46,6 @@ Foo_i::op3(CORBA::Long value)
void
Foo_i::op4(CORBA::Long value)
- ACE_THROW_SPEC((CORBA::SystemException))
{
ACE_UNUSED_ARG(value);
this->op_count_[3]++;
@@ -58,7 +54,6 @@ Foo_i::op4(CORBA::Long value)
void
Foo_i::op5(void)
- ACE_THROW_SPEC((CORBA::SystemException, FooException))
{
this->op_count_[4]++;
throw FooException();
@@ -67,7 +62,6 @@ Foo_i::op5(void)
void
Foo_i::done(void)
- ACE_THROW_SPEC((CORBA::SystemException))
{
TheAppShutdown->client_done();
}