summaryrefslogtreecommitdiff
path: root/TAO/tao/params.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-26 00:19:15 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-26 00:19:15 +0000
commite50019ac5966c1527c7bf877b9ec6f8dbeada23c (patch)
tree485764ff9939d95efba249e8d47c7083a3854ab0 /TAO/tao/params.cpp
parent012a1e8d9f9a4afd9a3d516f181a56631deebeba (diff)
downloadATCD-e50019ac5966c1527c7bf877b9ec6f8dbeada23c.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tao/params.cpp')
-rw-r--r--TAO/tao/params.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/TAO/tao/params.cpp b/TAO/tao/params.cpp
index 7754cb536c9..ea966ecb23f 100644
--- a/TAO/tao/params.cpp
+++ b/TAO/tao/params.cpp
@@ -99,19 +99,3 @@ TAO_ORB_Parameters::trading_service_port (void)
return this->trading_service_port_;
}
-void
-TAO_OA_Parameters::demux_strategy (const char* strategy)
-{
- // Determine the demux strategy based on the given name
- if (!ACE_OS::strcmp (strategy, "linear"))
- this->demux_ = TAO_LINEAR;
- else if (!ACE_OS::strcmp (strategy, "dynamic_hash"))
- this->demux_ = TAO_DYNAMIC_HASH;
- else if (!ACE_OS::strcmp (strategy, "user_def"))
- this->demux_ = TAO_USER_DEFINED;
- else if (!ACE_OS::strcmp (strategy, "active_demux"))
- this->demux_ = TAO_ACTIVE_DEMUX;
- else
- // Provide fallback!
- this->demux_ = TAO_DYNAMIC_HASH;
-}