Merge pull request #512 from CruzBishop/fix-510

Fix a typo in ObjectEchoClientHandler
This commit is contained in:
Norman Maurer 2012-08-14 02:58:33 -07:00
commit 1f1403697b

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);
}