diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-25 18:03:20 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-25 18:03:20 +0000 |
commit | 364c465628189a4f3dee6eac54ff48825c48e681 (patch) | |
tree | a7d51101d0fdfef43601b48965c2935059e617b6 /java/src/IceInternal/TcpEndpoint.java | |
parent | comments (diff) | |
download | ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.bz2 ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.xz ice-364c465628189a4f3dee6eac54ff48825c48e681.zip |
removed spaces
Diffstat (limited to 'java/src/IceInternal/TcpEndpoint.java')
-rw-r--r-- | java/src/IceInternal/TcpEndpoint.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/IceInternal/TcpEndpoint.java b/java/src/IceInternal/TcpEndpoint.java index 5b2cd4b8105..46d46a91adf 100644 --- a/java/src/IceInternal/TcpEndpoint.java +++ b/java/src/IceInternal/TcpEndpoint.java @@ -79,7 +79,7 @@ final class TcpEndpoint implements Endpoint { _port = Integer.parseInt(argument); } - catch (NumberFormatException ex) + catch(NumberFormatException ex) { throw new Ice.EndpointParseException(); } @@ -98,7 +98,7 @@ final class TcpEndpoint implements Endpoint { _timeout = Integer.parseInt(argument); } - catch (NumberFormatException ex) + catch(NumberFormatException ex) { throw new Ice.EndpointParseException(); } @@ -292,7 +292,7 @@ final class TcpEndpoint implements Endpoint { tcpAcceptor = (TcpAcceptor)acceptor; } - catch (ClassCastException ex) + catch(ClassCastException ex) { return false; } @@ -323,7 +323,7 @@ final class TcpEndpoint implements Endpoint { p = (TcpEndpoint)obj; } - catch (ClassCastException ex) + catch(ClassCastException ex) { return 1; } |