diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-02-07 11:40:02 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-02-07 11:40:02 +0100 |
commit | 88f147494f7bc861d7792be4785cb6cfc1c53c3c (patch) | |
tree | 986b58ab9afbf9effade35602656a3c56b0486d4 /cpp/src/Ice/LocatorInfo.h | |
parent | Fix ICE-7561 - PHP Build failure (diff) | |
download | ice-88f147494f7bc861d7792be4785cb6cfc1c53c3c.tar.bz2 ice-88f147494f7bc861d7792be4785cb6cfc1c53c3c.tar.xz ice-88f147494f7bc861d7792be4785cb6cfc1c53c3c.zip |
Removed unused methods
Diffstat (limited to 'cpp/src/Ice/LocatorInfo.h')
-rw-r--r-- | cpp/src/Ice/LocatorInfo.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/cpp/src/Ice/LocatorInfo.h b/cpp/src/Ice/LocatorInfo.h index 7809f211eb1..8bd1716790f 100644 --- a/cpp/src/Ice/LocatorInfo.h +++ b/cpp/src/Ice/LocatorInfo.h @@ -117,7 +117,6 @@ public: public: void addCallback(const ReferencePtr&, const ReferencePtr&, int, const GetEndpointsCallbackPtr&); - std::vector<EndpointIPtr> getEndpoints(const ReferencePtr&, const ReferencePtr&, int, bool&); void response(const Ice::ObjectPrxPtr&); void exception(const Ice::Exception&); @@ -159,17 +158,11 @@ public: } Ice::LocatorRegistryPrxPtr getLocatorRegistry(); - std::vector<EndpointIPtr> getEndpoints(const ReferencePtr& ref, int ttl, bool& cached) + void getEndpoints(const ReferencePtr& ref, int ttl, const GetEndpointsCallbackPtr& cb) { - return getEndpoints(ref, 0, ttl, cached); + getEndpoints(ref, 0, ttl, cb); } - std::vector<EndpointIPtr> getEndpoints(const ReferencePtr&, const ReferencePtr&, int, bool&); - - void getEndpointsWithCallback(const ReferencePtr& ref, int ttl, const GetEndpointsCallbackPtr& cb) - { - getEndpointsWithCallback(ref, 0, ttl, cb); - } - void getEndpointsWithCallback(const ReferencePtr&, const ReferencePtr&, int, const GetEndpointsCallbackPtr&); + void getEndpoints(const ReferencePtr&, const ReferencePtr&, int, const GetEndpointsCallbackPtr&); void clearCache(const ReferencePtr&); |