Remove unused local variable

This commit is contained in:
Trustin Lee 2012-09-01 17:01:55 +09:00
parent f1c07dbf0b
commit 7a77903af0

View File

@ -27,7 +27,6 @@ public abstract class ByteToByteEncoder extends ChannelOutboundByteHandlerAdapte
ByteBuf in = ctx.outboundByteBuffer();
ByteBuf out = ctx.nextOutboundByteBuffer();
int oldOutSize = out.readableBytes();
while (in.readable()) {
int oldInSize = in.readableBytes();
try {