Fix more checkstyle errors

This commit is contained in:
Trustin Lee 2012-06-07 09:19:14 +09:00
parent b1a156d3f2
commit 3def2e6598
3 changed files with 3 additions and 3 deletions

View File

@ -20,5 +20,5 @@ public final class SpdyConstants {
public static final int SPDY_MIN_VERSION = 2;
public static final int SPDY_MAX_VERSION = 3;
private SpdyConstants() {}
private SpdyConstants() { }
}

View File

@ -56,7 +56,7 @@ public class ObjectEchoClientHandler extends ChannelInboundMessageHandlerAdapter
}
@Override
public void messageReceived( ChannelInboundHandlerContext<List<Integer>> ctx, List<Integer> msg) throws Exception {
public void messageReceived(ChannelInboundHandlerContext<List<Integer>> ctx, List<Integer> msg) throws Exception {
// Echo back the received object to the client.
ctx.write(msg);
}

View File

@ -53,4 +53,4 @@ public class HexDumpProxyBackendHandler extends ChannelInboundStreamHandlerAdapt
cause.printStackTrace();
HexDumpProxyFrontendHandler.closeOnFlush(ctx.channel());
}
}
}