mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:58:13 +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
|
@ -1807,7 +1807,7 @@ ErrorOr<NonnullRefPtr<GUI::Action>> HackStudioWidget::create_open_project_config
|
|||
return maybe_error.release_error();
|
||||
|
||||
auto file = TRY(Core::File::open(absolute_config_file_path, Core::File::OpenMode::Write));
|
||||
TRY(file->write_entire_buffer(
|
||||
TRY(file->write_until_depleted(
|
||||
"{\n"
|
||||
" \"build_command\": \"your build command here\",\n"
|
||||
" \"run_command\": \"your run command here\"\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue