Suppressed unnecessary warning message .. (was not fixed in the previous fix)

This commit is contained in:
Trustin Lee 2008-08-28 13:37:26 +00:00
parent 506b7aeb05
commit 07fba7f859

View File

@ -218,7 +218,7 @@ class OioServerSocketPipelineSink extends AbstractChannelSink {
} catch (IOException e) {
// Don't log the exception if the server socket was closed
// by a user.
if (!channel.isBound() || !channel.isOpen()) {
if (!channel.socket.isBound() || channel.socket.isClosed()) {
break;
}