Removed printlns

This commit is contained in:
Trustin Lee 2009-02-26 09:14:33 +00:00
parent 284fc4db44
commit ae7fb55d62
2 changed files with 0 additions and 2 deletions

View File

@ -23,7 +23,6 @@ final class XnioAcceptedChannelHandler extends AbstractXnioChannelHandler {
SocketAddress localAddress = (SocketAddress) ((BoundChannel) channel).getLocalAddress();
parent = XnioChannelRegistry.getServerChannel(localAddress);
if (parent == null) {
System.out.println(localAddress);
// An accepted channel with no parent
// probably a race condition or a port not bound by Netty.
IoUtils.safeClose(channel);

View File

@ -651,7 +651,6 @@ public class SslHandler extends FrameDecoder {
try {
result = engine.unwrap(inNetBuf, outAppBuf);
} catch (SSLException e) {
System.err.println(engine.getUseClientMode());
throw e;
}