Removed printlns
This commit is contained in:
parent
284fc4db44
commit
ae7fb55d62
@ -23,7 +23,6 @@ final class XnioAcceptedChannelHandler extends AbstractXnioChannelHandler {
|
|||||||
SocketAddress localAddress = (SocketAddress) ((BoundChannel) channel).getLocalAddress();
|
SocketAddress localAddress = (SocketAddress) ((BoundChannel) channel).getLocalAddress();
|
||||||
parent = XnioChannelRegistry.getServerChannel(localAddress);
|
parent = XnioChannelRegistry.getServerChannel(localAddress);
|
||||||
if (parent == null) {
|
if (parent == null) {
|
||||||
System.out.println(localAddress);
|
|
||||||
// An accepted channel with no parent
|
// An accepted channel with no parent
|
||||||
// probably a race condition or a port not bound by Netty.
|
// probably a race condition or a port not bound by Netty.
|
||||||
IoUtils.safeClose(channel);
|
IoUtils.safeClose(channel);
|
||||||
|
@ -651,7 +651,6 @@ public class SslHandler extends FrameDecoder {
|
|||||||
try {
|
try {
|
||||||
result = engine.unwrap(inNetBuf, outAppBuf);
|
result = engine.unwrap(inNetBuf, outAppBuf);
|
||||||
} catch (SSLException e) {
|
} catch (SSLException e) {
|
||||||
System.err.println(engine.getUseClientMode());
|
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user