1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 14:15:07 +00:00

AK: Rename JsonObject::to_string() and pals to serialized().

And the variant that serializes into a StringBuilder is called serialize().
This commit is contained in:
Andreas Kling 2019-06-18 09:37:47 +02:00
parent 15fa4f1c55
commit aa3df518e7
7 changed files with 20 additions and 20 deletions

View file

@ -329,7 +329,7 @@ void VBForm::write_to_file(const String& path)
widget_array.append(widget_object);
}
form_object.set("widgets", widget_array);
file.write(form_object.to_string());
file.write(form_object.serialized());
}
void VBForm::dump()