AK: Remove unused String[256] from JsonParser

This shrinks the JsonParser class from 2072 bytes to 24. :^)
This commit is contained in:
Sam Atkins 2022-03-10 16:56:53 +00:00 committed by Linus Groh
parent cc874f2b82
commit 2362cc2943

View file

@ -31,8 +31,6 @@ private:
ErrorOr<JsonValue> parse_false();
ErrorOr<JsonValue> parse_true();
ErrorOr<JsonValue> parse_null();
String m_last_string_starting_with_character[256];
};
}