mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:07:36 +00:00
AK: Replace uses of JsonObject::get_deprecated()/get_ptr()
This commit is contained in:
parent
8d3b268cca
commit
79547896b7
2 changed files with 6 additions and 2 deletions
|
@ -103,7 +103,11 @@ bool JsonValue::equals(JsonValue const& other) const
|
|||
if (is_object() && other.is_object() && as_object().size() == other.as_object().size()) {
|
||||
bool result = true;
|
||||
as_object().for_each_member([&](auto& key, auto& value) {
|
||||
result &= value.equals(other.as_object().get_deprecated(key));
|
||||
auto other_value = other.as_object().get(key);
|
||||
if (other_value.has_value())
|
||||
result &= value.equals(*other_value);
|
||||
else
|
||||
result = false;
|
||||
});
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue