diff options
author | Jose <jose@zeroc.com> | 2009-07-02 19:39:13 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-07-02 19:39:13 +0200 |
commit | b288490bceaab7f9c20eb9de62fa7a7ff4f6a917 (patch) | |
tree | 8645fb6933ced669886f71f415eb57f676912ebf /py/python/Ice.py | |
parent | Fixed test failure introduce by previous fix (diff) | |
download | ice-b288490bceaab7f9c20eb9de62fa7a7ff4f6a917.tar.bz2 ice-b288490bceaab7f9c20eb9de62fa7a7ff4f6a917.tar.xz ice-b288490bceaab7f9c20eb9de62fa7a7ff4f6a917.zip |
Bug 2564 - ObjectAdapter::removeServantLocator
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 71e4e5fa1a9..1b718e6a56a 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -432,6 +432,9 @@ class ObjectAdapterI(ObjectAdapter): def addServantLocator(self, locator, category): self._impl.addServantLocator(locator, category) + def removeServantLocator(self, category): + return self._impl.removeServantLocator(category) + def findServantLocator(self, category): return self._impl.findServantLocator(category) |