Strip trailing whitespace.

This commit is contained in:
player-03
2023-01-03 14:15:23 -05:00
committed by GitHub
parent 603a3619b6
commit 1545179b5b

View File

@@ -361,7 +361,7 @@ class NativeHTTPRequest
return promise.future;
}
private function buildBuffer() {
bytes = buffer.getBytes();
return bytes;
@@ -393,9 +393,9 @@ class NativeHTTPRequest
}
private function curl_onWrite(curl:CURL, output:Bytes):Int
{
{
buffer.addBytes(output, 0, output.length);
return output.length;
}