summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp
index bbc4163bf0c..090bb115750 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp
@@ -218,7 +218,7 @@ TAO_EC_ProxyPushSupplier::disconnect_push_supplier (
this->deactivate (ACE_TRY_ENV);
ACE_CHECK;
- // Notify the event channel....
+ // Notify the event channel...
this->event_channel_->disconnected (this, ACE_TRY_ENV);
this->_decr_refcnt ();
@@ -259,9 +259,6 @@ TAO_EC_ProxyPushSupplier::filter (const RtecEventComm::EventSet& event,
RtecEventChannelAdmin::EventChannel::SYNCHRONIZATION_ERROR ());
ACE_CHECK_RETURN (0);
- if (this->is_connected_i () == 0)
- return 0;
-
result =
this->child_->filter (event, qos_info, ACE_TRY_ENV);
if (this->refcount_ > 0)
@@ -285,9 +282,6 @@ TAO_EC_ProxyPushSupplier::filter_nocopy (RtecEventComm::EventSet& event,
RtecEventChannelAdmin::EventChannel::SYNCHRONIZATION_ERROR ());
ACE_CHECK_RETURN (0);
- if (this->is_connected_i () == 0)
- return 0;
-
result =
this->child_->filter_nocopy (event, qos_info, ACE_TRY_ENV);
if (this->refcount_ > 0)
@@ -440,9 +434,6 @@ TAO_EC_ProxyPushSupplier::can_match (
{
ACE_GUARD_RETURN (ACE_Lock, ace_mon, *this->lock_, 0);
- if (this->is_connected_i () == 0)
- return 0;
-
return this->child_->can_match (header);
}