diff options
Diffstat (limited to 'java/src/IceInternal/TcpEndpointFactory.java')
-rw-r--r-- | java/src/IceInternal/TcpEndpointFactory.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceInternal/TcpEndpointFactory.java b/java/src/IceInternal/TcpEndpointFactory.java index 1bc9e326d66..7fb5572e391 100644 --- a/java/src/IceInternal/TcpEndpointFactory.java +++ b/java/src/IceInternal/TcpEndpointFactory.java @@ -29,9 +29,9 @@ final class TcpEndpointFactory implements EndpointFactory } public EndpointI - create(String str, boolean oaEndpoint) + create(String str, boolean server) { - return new TcpEndpointI(_instance, str, oaEndpoint); + return new TcpEndpointI(_instance, str, server); } public EndpointI |