diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-06-12 12:13:29 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-06-12 12:13:29 -0230 |
commit | 4cf00523c0fcccfcfb3859467bb546d96201e65e (patch) | |
tree | 23df49beb9d9b737e7193a755dfd44e862859fd0 /java/src/IceInternal/TcpEndpointFactory.java | |
parent | Fixed bug 2220 (diff) | |
download | ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.tar.bz2 ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.tar.xz ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.zip |
Bug 1658 - minor refactoring
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 |