summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/ReferenceFactory.java
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-06-04 15:53:35 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-06-04 15:53:35 +0000
commit512d5d6ee8737edc9dbc82773532ae9a54a7cfcd (patch)
treeaf479386298a1914edec879859341e507d0e7326 /java/src/IceInternal/ReferenceFactory.java
parentBug 1597. (diff)
downloadice-512d5d6ee8737edc9dbc82773532ae9a54a7cfcd.tar.bz2
ice-512d5d6ee8737edc9dbc82773532ae9a54a7cfcd.tar.xz
ice-512d5d6ee8737edc9dbc82773532ae9a54a7cfcd.zip
Bug 1658 - listen on 0.0.0.0 rather than expanding endpoints
Diffstat (limited to 'java/src/IceInternal/ReferenceFactory.java')
-rw-r--r--java/src/IceInternal/ReferenceFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceInternal/ReferenceFactory.java b/java/src/IceInternal/ReferenceFactory.java
index 688c2f76be0..06864aa2092 100644
--- a/java/src/IceInternal/ReferenceFactory.java
+++ b/java/src/IceInternal/ReferenceFactory.java
@@ -425,10 +425,10 @@ public final class ReferenceFactory
}
String es = s.substring(beg, end);
- EndpointI endp = _instance.endpointFactoryManager().create(es);
+ EndpointI endp = _instance.endpointFactoryManager().create(es, false);
if(endp != null)
{
- java.util.ArrayList endps = endp.expand(false);
+ java.util.ArrayList endps = endp.expand();
endpoints.addAll(endps);
}
else