diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-02-13 17:53:37 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-02-13 17:53:37 +0000 |
commit | 966060d3a694438bc977ff5be79e33c77ace765a (patch) | |
tree | 78b9e96a2ac9a94e7379f9f4b5ce1c67b6a941d0 /java/src/IceSSL/SslEndpointFactory.java | |
parent | Fix (diff) | |
download | ice-966060d3a694438bc977ff5be79e33c77ace765a.tar.bz2 ice-966060d3a694438bc977ff5be79e33c77ace765a.tar.xz ice-966060d3a694438bc977ff5be79e33c77ace765a.zip |
Bug 804 - no endpoint in reference means try all local interfaces
Diffstat (limited to 'java/src/IceSSL/SslEndpointFactory.java')
-rw-r--r-- | java/src/IceSSL/SslEndpointFactory.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceSSL/SslEndpointFactory.java b/java/src/IceSSL/SslEndpointFactory.java index 6a4d36efeb6..89c4f8072bd 100644 --- a/java/src/IceSSL/SslEndpointFactory.java +++ b/java/src/IceSSL/SslEndpointFactory.java @@ -29,9 +29,9 @@ final class SslEndpointFactory implements IceInternal.EndpointFactory } public IceInternal.EndpointI - create(String str, boolean adapterEndp) + create(String str) { - return new SslEndpointI(_instance, str, adapterEndp); + return new SslEndpointI(_instance, str); } public IceInternal.EndpointI |