mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00
AK: Rename Stream::write_entire_buffer to Stream::write_until_depleted
No functional changes.
This commit is contained in:
parent
a3f73e7d85
commit
ecd1862859
46 changed files with 141 additions and 141 deletions
|
@ -54,7 +54,7 @@ void Request::stream_into(Stream& stream)
|
|||
if (read_bytes.is_empty())
|
||||
break;
|
||||
// FIXME: What do we do if this fails?
|
||||
stream.write_entire_buffer(read_bytes).release_value_but_fixme_should_propagate_errors();
|
||||
stream.write_until_depleted(read_bytes).release_value_but_fixme_should_propagate_errors();
|
||||
break;
|
||||
} while (true);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue