summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-01-27 06:36:22 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-01-27 06:36:22 +0000
commite42cb555d54ca2df4b61f7b12ae6bb01b2ab548e (patch)
tree720c90b968bdedabd5a8fd41d0f46f9ea9557cf7
parent9bcd9b9248ad8e34ebd87aa9eb070193a84cfcf1 (diff)
downloadATCD-e42cb555d54ca2df4b61f7b12ae6bb01b2ab548e.tar.gz
-rw-r--r--TAO/tao/CSD_ThreadPool/CSD_TP_Servant_State_Map.inl11
1 files changed, 4 insertions, 7 deletions
diff --git a/TAO/tao/CSD_ThreadPool/CSD_TP_Servant_State_Map.inl b/TAO/tao/CSD_ThreadPool/CSD_TP_Servant_State_Map.inl
index 775d4a67719..1b1e35aba91 100644
--- a/TAO/tao/CSD_ThreadPool/CSD_TP_Servant_State_Map.inl
+++ b/TAO/tao/CSD_ThreadPool/CSD_TP_Servant_State_Map.inl
@@ -18,8 +18,7 @@ TAO::CSD::TP_Servant_State_Map::~TP_Servant_State_Map()
ACE_INLINE
TAO::CSD::TP_Servant_State*
-TAO::CSD::TP_Servant_State_Map::find(PortableServer::Servant servant
- )
+TAO::CSD::TP_Servant_State_Map::find(PortableServer::Servant servant)
{
void* key = servant;
@@ -36,8 +35,7 @@ TAO::CSD::TP_Servant_State_Map::find(PortableServer::Servant servant
ACE_INLINE
void
-TAO::CSD::TP_Servant_State_Map::insert(PortableServer::Servant servant
- )
+TAO::CSD::TP_Servant_State_Map::insert(PortableServer::Servant servant)
{
void* key = servant;
@@ -56,14 +54,13 @@ TAO::CSD::TP_Servant_State_Map::insert(PortableServer::Servant servant
ACE_INLINE
void
-TAO::CSD::TP_Servant_State_Map::remove(PortableServer::Servant servant
- )
+TAO::CSD::TP_Servant_State_Map::remove(PortableServer::Servant servant)
{
void* key = servant;
if (this->map_.unbind(key) == -1)
{
- throw (PortableServer::POA::ServantNotActive ());
+ throw PortableServer::POA::ServantNotActive ();
}
}