diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-11-27 10:06:39 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-11-27 10:06:39 +0100 |
commit | b64a3edb27b114253ac72ba413776d232b6c2e12 (patch) | |
tree | 16ba704e8c358f4cae3e3e70581be412429c91e6 /cpp/src/Ice/WSEndpoint.cpp | |
parent | ICE-6003 - Ice-3.6b.zip contains Makefile's in js dir (diff) | |
download | ice-b64a3edb27b114253ac72ba413776d232b6c2e12.tar.bz2 ice-b64a3edb27b114253ac72ba413776d232b6c2e12.tar.xz ice-b64a3edb27b114253ac72ba413776d232b6c2e12.zip |
Removed dead code (sync. connection establishment code)
Diffstat (limited to 'cpp/src/Ice/WSEndpoint.cpp')
-rw-r--r-- | cpp/src/Ice/WSEndpoint.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cpp/src/Ice/WSEndpoint.cpp b/cpp/src/Ice/WSEndpoint.cpp index f9eabad59d9..3cba801d782 100644 --- a/cpp/src/Ice/WSEndpoint.cpp +++ b/cpp/src/Ice/WSEndpoint.cpp @@ -179,17 +179,6 @@ IceInternal::WSEndpoint::transceiver() const return 0; } -vector<ConnectorPtr> -IceInternal::WSEndpoint::connectors(Ice::EndpointSelectionType selType) const -{ - vector<ConnectorPtr> connectors = _delegate->connectors(selType); - for(vector<ConnectorPtr>::iterator p = connectors.begin(); p != connectors.end(); ++p) - { - *p = new WSConnector(_instance, *p, _delegate->host(), _delegate->port(), _resource); - } - return connectors; -} - void IceInternal::WSEndpoint::connectors_async(Ice::EndpointSelectionType selType, const EndpointI_connectorsPtr& callback) const |