Remove unnecessary parenthesis
This commit is contained in:
parent
fa33529ca5
commit
ef4bc99849
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user