diff options
-rw-r--r-- | AK/JsonObject.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/AK/JsonObject.h b/AK/JsonObject.h index a47d5a9c2b..cb8a71a40f 100644 --- a/AK/JsonObject.h +++ b/AK/JsonObject.h @@ -11,12 +11,6 @@ public: JsonObject() { } ~JsonObject() { } - JsonObject(const JsonObject& other) - { - for (auto& it : other.m_members) - m_members.set(it.key, it.value); - } - int size() const { return m_members.size(); } bool is_empty() const { return m_members.is_empty(); } |