From 2362cc2943b5b78931ac062f54d66100cdbe07cd Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Thu, 10 Mar 2022 16:56:53 +0000 Subject: [PATCH] AK: Remove unused String[256] from JsonParser This shrinks the JsonParser class from 2072 bytes to 24. :^) --- AK/JsonParser.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/AK/JsonParser.h b/AK/JsonParser.h index fd209d7cae0..6e04d0014cd 100644 --- a/AK/JsonParser.h +++ b/AK/JsonParser.h @@ -31,8 +31,6 @@ private: ErrorOr parse_false(); ErrorOr parse_true(); ErrorOr parse_null(); - - String m_last_string_starting_with_character[256]; }; }