diff options
author | Jose <jose@zeroc.com> | 2009-11-03 18:15:56 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-11-03 18:15:56 +0100 |
commit | 9ea24c7ded9caad007687fb0c03e7d729aae91f0 (patch) | |
tree | f091e57fb83a19e22f445cd8ff520fce711195f3 /cpp/src/Ice/Reference.cpp | |
parent | 2589 - cloneWithPrefix implementation for python. (diff) | |
download | ice-9ea24c7ded9caad007687fb0c03e7d729aae91f0.tar.bz2 ice-9ea24c7ded9caad007687fb0c03e7d729aae91f0.tar.xz ice-9ea24c7ded9caad007687fb0c03e7d729aae91f0.zip |
3986 - getConnectionId should not throw for FixedReference.
Diffstat (limited to 'cpp/src/Ice/Reference.cpp')
-rw-r--r-- | cpp/src/Ice/Reference.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp index e91d048a66e..7bffecdd084 100644 --- a/cpp/src/Ice/Reference.cpp +++ b/cpp/src/Ice/Reference.cpp @@ -529,8 +529,7 @@ IceInternal::FixedReference::getLocatorCacheTimeout() const string IceInternal::FixedReference::getConnectionId() const { - throw FixedProxyException(__FILE__, __LINE__); - return string(); // Keep the compiler happy. + return string(); } ReferencePtr |