mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:47:46 +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:
parent
15fa4f1c55
commit
aa3df518e7
7 changed files with 20 additions and 20 deletions
|
@ -40,8 +40,8 @@ public:
|
|||
callback(it.key, it.value);
|
||||
}
|
||||
|
||||
String to_string() const;
|
||||
void to_string(StringBuilder&) const;
|
||||
String serialized() const;
|
||||
void serialize(StringBuilder&) const;
|
||||
|
||||
private:
|
||||
HashMap<String, JsonValue> m_members;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue