Remove unnecessary parenthesis

This commit is contained in:
Trustin Lee 2013-11-15 23:07:19 +09:00
parent fa33529ca5
commit ef4bc99849

View File

@ -324,7 +324,7 @@ public final class ByteBufUtil {
if (!cr.isUnderflow()) {
cr.throwException();
}
dst.writerIndex(dst.writerIndex() + (dstBuf.position() - pos));
dst.writerIndex(dst.writerIndex() + dstBuf.position() - pos);
release = false;
return dst;
} catch (CharacterCodingException x) {