We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a96983f commit 45319b7Copy full SHA for 45319b7
netty-utils/src/main/java/org/asynchttpclient/netty/util/Utf8ByteBufCharsetDecoder.java
@@ -55,7 +55,7 @@ protected CharBuffer allocateCharBuffer(int l) {
55
return CharBuffer.allocate(l);
56
}
57
58
- private void ensureCapacity(int l) {
+ protected void ensureCapacity(int l) {
59
if (charBuffer.position() == 0) {
60
if (charBuffer.capacity() < l) {
61
charBuffer = allocateCharBuffer(l);
0 commit comments