diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-02 15:07:02 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-02 15:07:02 +0000 |
commit | 912ae5bd3be5e5a1086c59288cf099435d31aa65 (patch) | |
tree | 6ce168d1c9f6381080331f7981f1b3f896fd04c5 /cpp/src/Ice/ReferenceFactory.cpp | |
parent | updating property names (diff) | |
download | ice-912ae5bd3be5e5a1086c59288cf099435d31aa65.tar.bz2 ice-912ae5bd3be5e5a1086c59288cf099435d31aa65.tar.xz ice-912ae5bd3be5e5a1086c59288cf099435d31aa65.zip |
Adding string converter optimizations
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index 45f68f0562c..d22aa8b3717 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -581,7 +581,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident, BasicStream* s) } else { - s->read(adapterId); + s->read(adapterId, false); return create(ident, _instance->initializationData().defaultContext, facet, mode, secure, adapterId, routerInfo, locatorInfo, _instance->defaultsAndOverrides()->defaultCollocationOptimization, _instance->defaultsAndOverrides()->defaultLocatorCacheTimeout); |