mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-03 01:38:52 +00:00
LibCore: Rename Stream::*_or_error
to *_entire_buffer
All of our functions are `_or_error` (or are about to be), and maybe making it less reminiscient of AK::Stream will make people use it more.
This commit is contained in:
parent
ed4c2f2f8e
commit
6c7c5a6786
Notes:
sideshowbarker
2024-07-17 03:22:57 +09:00
Author: https://github.com/timschumi
Commit: 6c7c5a6786
Pull-request: https://github.com/SerenityOS/serenity/pull/16429
Reviewed-by: https://github.com/sin-ack ✅
17 changed files with 44 additions and 36 deletions
|
@ -17,7 +17,7 @@ static DeprecatedString read_all(DeprecatedString const& path)
|
|||
auto file = MUST(Core::Stream::File::open(path, Core::Stream::OpenMode::Read));
|
||||
auto file_size = MUST(file->size());
|
||||
auto content = MUST(ByteBuffer::create_uninitialized(file_size));
|
||||
if (!file->read_or_error(content.bytes()))
|
||||
if (!file->read_entire_buffer(content.bytes()))
|
||||
VERIFY_NOT_REACHED();
|
||||
return DeprecatedString { content.bytes() };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue