diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-03-26 14:49:01 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-03-26 14:49:01 +0000 |
commit | 737b4f7ae612af1d35b17c50dc2ed20aa7e62f25 (patch) | |
tree | 4fed4b1451ec87ac5b3fae5df5c5454a814190f9 /cppe/src/IceE/ReferenceFactory.cpp | |
parent | Temporary fix (diff) | |
download | ice-737b4f7ae612af1d35b17c50dc2ed20aa7e62f25.tar.bz2 ice-737b4f7ae612af1d35b17c50dc2ed20aa7e62f25.tar.xz ice-737b4f7ae612af1d35b17c50dc2ed20aa7e62f25.zip |
Removed StringConverter
Diffstat (limited to 'cppe/src/IceE/ReferenceFactory.cpp')
-rw-r--r-- | cppe/src/IceE/ReferenceFactory.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/cppe/src/IceE/ReferenceFactory.cpp b/cppe/src/IceE/ReferenceFactory.cpp index f797e43f494..c9689fdd218 100644 --- a/cppe/src/IceE/ReferenceFactory.cpp +++ b/cppe/src/IceE/ReferenceFactory.cpp @@ -337,15 +337,6 @@ IceInternal::ReferenceFactory::create(const string& str) throw ex; } - if(_instance->initializationData().stringConverter) - { - string tmpFacet; - _instance->initializationData().stringConverter->fromUTF8( - reinterpret_cast<const Byte*>(facet.data()), - reinterpret_cast<const Byte*>(facet.data() + facet.size()), tmpFacet); - facet = tmpFacet; - } - break; } @@ -549,15 +540,6 @@ IceInternal::ReferenceFactory::create(const string& str) throw ex; } - if(_instance->initializationData().stringConverter) - { - string tmpAdapter; - _instance->initializationData().stringConverter->fromUTF8( - reinterpret_cast<const Byte*>(adapter.data()), - reinterpret_cast<const Byte*>(adapter.data() + adapter.size()), tmpAdapter); - adapter = tmpAdapter; - } - #ifdef ICEE_HAS_ROUTER return create(ident, _instance->getDefaultContext(), facet, mode, secure, adapter, routerInfo, locatorInfo); |