summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/Reference.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-12-09 11:22:45 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-12-09 11:22:45 +0000
commitfb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81 (patch)
treee7c7f79755f5195e5420ca658f205df55395ad57 /cppe/src/IceE/Reference.cpp
parentupdate contents of demo definition files (diff)
downloadice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.tar.bz2
ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.tar.xz
ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.zip
Fixed DirectReference::getConnection() to not call toString()
Diffstat (limited to 'cppe/src/IceE/Reference.cpp')
-rw-r--r--cppe/src/IceE/Reference.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/src/IceE/Reference.cpp b/cppe/src/IceE/Reference.cpp
index dc29b400091..ea3f67869f5 100644
--- a/cppe/src/IceE/Reference.cpp
+++ b/cppe/src/IceE/Reference.cpp
@@ -470,7 +470,7 @@ IceInternal::FixedReference::getConnection() const
if(_fixedConnections.empty())
{
NoEndpointException ex(__FILE__, __LINE__);
- ex.proxy = toString();
+ ex.proxy = ""; // No stringified representation for fixed proxies.
throw ex;
}