summaryrefslogtreecommitdiff
path: root/TAO/tao/Strategies/SCIOP_Transport.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-07-18 09:59:36 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-07-18 09:59:36 +0000
commitaa7dcb60c6eea25184ad1e35576471038028adad (patch)
treee1e12c666c512373adee32863666394ddbfac363 /TAO/tao/Strategies/SCIOP_Transport.cpp
parente09d370f95629bee7dd79ccbbb4724bfc616d7ea (diff)
downloadATCD-aa7dcb60c6eea25184ad1e35576471038028adad.tar.gz
Wed Jul 18 09:55:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Strategies/SCIOP_Transport.cpp')
-rw-r--r--TAO/tao/Strategies/SCIOP_Transport.cpp20
1 files changed, 3 insertions, 17 deletions
diff --git a/TAO/tao/Strategies/SCIOP_Transport.cpp b/TAO/tao/Strategies/SCIOP_Transport.cpp
index 65b0fe7b905..073cf32c2cd 100644
--- a/TAO/tao/Strategies/SCIOP_Transport.cpp
+++ b/TAO/tao/Strategies/SCIOP_Transport.cpp
@@ -28,28 +28,14 @@ ACE_RCSID (tao,
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_SCIOP_Transport::TAO_SCIOP_Transport (TAO_SCIOP_Connection_Handler *handler,
- TAO_ORB_Core *orb_core,
- CORBA::Boolean )
+ TAO_ORB_Core *orb_core)
: TAO_Transport (TAO_TAG_SCIOP_PROFILE,
orb_core)
, connection_handler_ (handler)
, messaging_object_ (0)
{
-#if 0
- // First step in deprecating this.
- if (flag)
- {
- // Use the lite version of the protocol
- ACE_NEW (this->messaging_object_,
- TAO_GIOP_Message_Lite (orb_core));
- }
- else
-#endif /*if 0*/
- {
- // Use the normal GIOP object
- ACE_NEW (this->messaging_object_,
- TAO_GIOP_Message_Base (orb_core, this));
- }
+ ACE_NEW (this->messaging_object_,
+ TAO_GIOP_Message_Base (orb_core, this));
}
TAO_SCIOP_Transport::~TAO_SCIOP_Transport (void)