diff options
Diffstat (limited to 'AK')
-rw-r--r-- | AK/JsonArray.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/AK/JsonArray.h b/AK/JsonArray.h index 1154925568..9b732036bb 100644 --- a/AK/JsonArray.h +++ b/AK/JsonArray.h @@ -62,7 +62,6 @@ public: [[nodiscard]] JsonValue take(size_t index) { return m_values.take(index); } void must_append(JsonValue value) { m_values.append(move(value)); } - void must_set(size_t index, JsonValue value) { m_values.insert(index, move(value)); } void clear() { m_values.clear(); } ErrorOr<void> append(JsonValue value) { return m_values.try_append(move(value)); } |