Fix a typo in ObjectEchoClientHandler

This fixes #510 in master

Signed-off-by: Cruz Julian Bishop <cruzjbishop@gmail.com>
This commit is contained in:
Cruz Julian Bishop 2012-08-14 19:52:27 +10:00
parent ad534efc58
commit af0a7eaf13

View File

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