summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/Generic_Servant/MyFooServant.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/Generic_Servant/MyFooServant.cpp')
-rw-r--r--TAO/examples/POA/Generic_Servant/MyFooServant.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/TAO/examples/POA/Generic_Servant/MyFooServant.cpp b/TAO/examples/POA/Generic_Servant/MyFooServant.cpp
index afd347b97f8..f64e34d0030 100644
--- a/TAO/examples/POA/Generic_Servant/MyFooServant.cpp
+++ b/TAO/examples/POA/Generic_Servant/MyFooServant.cpp
@@ -43,21 +43,18 @@ MyFooServant::_default_POA (CORBA::Environment &/*env*/)
CORBA::Long
MyFooServant::doit (CORBA::Environment &/*env*/)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
return this->value_;
}
void
MyFooServant::simply_doit (CORBA::Environment &/*env*/)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
}
void
MyFooServant::timed_operation (CORBA::ULong timeout,
CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"Thread %t starting MyFooServant::timed_operation with timeout %d\n",
@@ -71,10 +68,8 @@ MyFooServant::timed_operation (CORBA::ULong timeout,
void
MyFooServant::shutdown (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
this->orb_->shutdown (0, ACE_TRY_ENV);
- ACE_CHECK;
}