diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-06-18 09:46:16 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-06-18 09:46:16 -0230 |
commit | 182f6822ffa4656df21bb423104478e607004067 (patch) | |
tree | e8682db31506d0a38e74d9cca5b6008b042f1cfd /cpp/src/Ice/ReferenceFactory.cpp | |
parent | Added back bin/.gitcommit and lib/.gitcommit (diff) | |
download | ice-182f6822ffa4656df21bb423104478e607004067.tar.bz2 ice-182f6822ffa4656df21bb423104478e607004067.tar.xz ice-182f6822ffa4656df21bb423104478e607004067.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2120 - deprecated *.CollocationOptimization,
replaced with *.CollocationOptimized
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index ccd7c77e285..5ba3c621c12 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -660,7 +660,7 @@ IceInternal::ReferenceFactory::createFromProperties(const string& propertyPrefix } } - property = propertyPrefix + ".CollocationOptimization"; + property = propertyPrefix + ".CollocationOptimized"; if(!properties->getProperty(property).empty()) { ref = ref->changeCollocationOptimization(properties->getPropertyAsInt(property) > 0); @@ -808,7 +808,7 @@ IceInternal::ReferenceFactory::checkForUnknownProperties(const string& prefix) "LocatorCacheTimeout", "Locator", "Router", - "CollocationOptimization", + "CollocationOptimized", "ThreadPerConnection" }; |