Remove unnecessary parenthesis
This commit is contained in:
parent
fa33529ca5
commit
ef4bc99849
@ -324,7 +324,7 @@ public final class ByteBufUtil {
|
|||||||
if (!cr.isUnderflow()) {
|
if (!cr.isUnderflow()) {
|
||||||
cr.throwException();
|
cr.throwException();
|
||||||
}
|
}
|
||||||
dst.writerIndex(dst.writerIndex() + (dstBuf.position() - pos));
|
dst.writerIndex(dst.writerIndex() + dstBuf.position() - pos);
|
||||||
release = false;
|
release = false;
|
||||||
return dst;
|
return dst;
|
||||||
} catch (CharacterCodingException x) {
|
} catch (CharacterCodingException x) {
|
||||||
|
Loading…
Reference in New Issue
Block a user