diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-12-09 11:22:45 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-12-09 11:22:45 +0000 |
commit | fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81 (patch) | |
tree | e7c7f79755f5195e5420ca658f205df55395ad57 /java/src/IceInternal/FixedReference.java | |
parent | update contents of demo definition files (diff) | |
download | ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.tar.bz2 ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.tar.xz ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.zip |
Fixed DirectReference::getConnection() to not call toString()
Diffstat (limited to 'java/src/IceInternal/FixedReference.java')
-rw-r--r-- | java/src/IceInternal/FixedReference.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceInternal/FixedReference.java b/java/src/IceInternal/FixedReference.java index c01b074b208..f9e6f942a6b 100644 --- a/java/src/IceInternal/FixedReference.java +++ b/java/src/IceInternal/FixedReference.java @@ -132,7 +132,7 @@ public class FixedReference extends Reference if(filteredConns.length == 0) { Ice.NoEndpointException ex = new Ice.NoEndpointException(); - ex.proxy = toString(); + ex.proxy = ""; // No stringified representation for fixed proxies. throw ex; } |