E57B
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 b3dd989 commit e6b3cf3Copy full SHA for e6b3cf3
client/src/main/java/org/asynchttpclient/request/body/generator/SimpleFeedableBodyGenerator.java
@@ -77,13 +77,13 @@ private BodyState readNextChunk(ByteBuf target) throws IOException {
77
queue.remove();
78
} else {
79
res = BodyState.CONTINUE;
80
- readBodyChunk(target, nextPart);
+ readChunk(target, nextPart);
81
}
82
83
return res;
84
85
86
- private void readBodyChunk(ByteBuf target, BodyChunk part) {
+ private void readChunk(ByteBuf target, BodyChunk part) {
87
move(target, part.buffer);
88
89
if (!part.buffer.hasRemaining()) {
0 commit comments