summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/Util.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-05-12 13:58:50 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-05-12 13:58:50 +0000
commiteee7de5ac6549dc013b1f79a51c91aa0a88e13ea (patch)
tree1ba7953409436dedce5d1cc5177317517dd3dede /py/modules/IcePy/Util.cpp
parentFix bug 973 (diff)
downloadice-eee7de5ac6549dc013b1f79a51c91aa0a88e13ea.tar.bz2
ice-eee7de5ac6549dc013b1f79a51c91aa0a88e13ea.tar.xz
ice-eee7de5ac6549dc013b1f79a51c91aa0a88e13ea.zip
Removed deprecation of stringToIdentity
Diffstat (limited to 'py/modules/IcePy/Util.cpp')
-rw-r--r--py/modules/IcePy/Util.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/py/modules/IcePy/Util.cpp b/py/modules/IcePy/Util.cpp
index a676c10f5d4..d521b6e96d2 100644
--- a/py/modules/IcePy/Util.cpp
+++ b/py/modules/IcePy/Util.cpp
@@ -790,7 +790,6 @@ extern "C"
PyObject*
IcePy_identityToString(PyObject* /*self*/, PyObject* args)
{
- PyErr_Warn(PyExc_DeprecationWarning, STRCAST("Ice.identityToString is deprecated, use Communicator::identityToString instead."));
PyObject* identityType = IcePy::lookupType("Ice.Identity");
PyObject* p;
if(!PyArg_ParseTuple(args, STRCAST("O!"), identityType, &p))
@@ -821,7 +820,6 @@ extern "C"
PyObject*
IcePy_stringToIdentity(PyObject* /*self*/, PyObject* args)
{
- PyErr_Warn(PyExc_DeprecationWarning, STRCAST("Ice.stringToIdentity is deprecated, use Communicator::stringToIdentity instead."));
char* str;
if(!PyArg_ParseTuple(args, STRCAST("s"), &str))
{