summaryrefslogtreecommitdiff
path: root/TAO/tao/default_client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/default_client.cpp')
-rw-r--r--TAO/tao/default_client.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/TAO/tao/default_client.cpp b/TAO/tao/default_client.cpp
index b9e2aaa057b..5cb42f50a01 100644
--- a/TAO/tao/default_client.cpp
+++ b/TAO/tao/default_client.cpp
@@ -322,11 +322,6 @@ TAO_Default_Client_Strategy_Factory::create_wait_strategy (TAO_Transport *transp
{
TAO_Wait_Strategy *ws = 0;
-/*
- * Hook to customize the wait strategy object when the concrete wait strategy
- * object is known a priori.
- */
-//@@ WAIT_STRATEGY_SPL_COMMENT_HOOK_START
if (this->wait_strategy_ == TAO_WAIT_ON_READ)
ACE_NEW_RETURN (ws,
TAO_Wait_On_Read (transport),
@@ -347,7 +342,6 @@ TAO_Default_Client_Strategy_Factory::create_wait_strategy (TAO_Transport *transp
TAO_Wait_On_Leader_Follower (transport),
0);
}
-//@@ WAIT_STRATEGY_SPL_COMMENT_HOOK_END
return ws;
}