Removed System.out

This commit is contained in:
Trustin Lee 2010-05-27 12:40:50 +00:00
parent 0d0b0c56c3
commit 11705c9915

View File

@ -152,7 +152,7 @@ public class HttpRequestHandler extends SimpleChannelUpstreamHandler {
// Write the response.
ChannelFuture future = e.getChannel().write(response);
System.out.println(response.toString());
// Close the non-keep-alive connection after the write operation is done.
if (!keepAlive) {
future.addListener(ChannelFutureListener.CLOSE);