2004-02-05 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/NIOServerSocket.java (impl): Unused, removed. * gnu/java/nio/SocketChannelImpl.java (finnishConnect): Don't throw NoConnectionPendingException if not connected or no connection pending. From-SVN: r77317
This commit is contained in:
committed by
Michael Koch
parent
92ff3e4314
commit
99814868c1
@@ -174,7 +174,7 @@ public final class SocketChannelImpl extends SocketChannel
|
||||
if (!isOpen())
|
||||
throw new ClosedChannelException();
|
||||
|
||||
if (!connectionPending)
|
||||
if (!isConnected() && !connectionPending)
|
||||
throw new NoConnectionPendingException();
|
||||
|
||||
if (isConnected())
|
||||
|
||||
Reference in New Issue
Block a user