Fix checkstyle

This commit is contained in:
Trustin Lee 2013-01-09 15:12:25 +09:00
parent 5c2be33cae
commit 5d2e0688ab

View File

@ -50,7 +50,6 @@ public abstract class ByteToMessageCodec<INBOUND_OUT, OUTBOUND_IN>
@Override
public INBOUND_OUT decode(ChannelHandlerContext ctx, ByteBuf in) throws Exception {
return ByteToMessageCodec.this.decode(ctx, in);
}
@Override
@ -109,4 +108,4 @@ public abstract class ByteToMessageCodec<INBOUND_OUT, OUTBOUND_IN>
protected INBOUND_OUT decodeLast(ChannelHandlerContext ctx, ByteBuf in) throws Exception {
return decode(ctx, in);
}
}
}