diff --git a/AK/JsonArray.cpp b/AK/JsonArray.cpp deleted file mode 100644 index 08cf6a96d4..0000000000 --- a/AK/JsonArray.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include -#include - -namespace AK { - -} diff --git a/AK/JsonObject.cpp b/AK/JsonObject.cpp deleted file mode 100644 index 325ed33f1b..0000000000 --- a/AK/JsonObject.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include -#include - -namespace AK { - -} diff --git a/AK/Tests/Makefile b/AK/Tests/Makefile index a20db0fbf8..02c293bf2b 100644 --- a/AK/Tests/Makefile +++ b/AK/Tests/Makefile @@ -8,8 +8,6 @@ SHARED_TEST_OBJS = \ ../StringBuilder.o \ ../StringView.o \ ../LogStream.o \ - ../JsonArray.o \ - ../JsonObject.o \ ../JsonValue.o \ ../JsonParser.o \ ../FileSystemPath.o \ diff --git a/DevTools/FormCompiler/Makefile b/DevTools/FormCompiler/Makefile index e7854c999c..b4b7ac88eb 100644 --- a/DevTools/FormCompiler/Makefile +++ b/DevTools/FormCompiler/Makefile @@ -6,9 +6,7 @@ OBJS = \ ../../AK/StringImpl.o \ ../../AK/StringBuilder.o \ ../../AK/StringView.o \ - ../../AK/JsonObject.o \ ../../AK/JsonValue.o \ - ../../AK/JsonArray.o \ ../../AK/JsonParser.o \ ../../AK/LogStream.o \ ../../Libraries/LibCore/CIODevice.o \ diff --git a/DevTools/IPCCompiler/Makefile b/DevTools/IPCCompiler/Makefile index 160cf86979..089b75497a 100644 --- a/DevTools/IPCCompiler/Makefile +++ b/DevTools/IPCCompiler/Makefile @@ -6,9 +6,7 @@ OBJS = \ ../../AK/StringImpl.o \ ../../AK/StringBuilder.o \ ../../AK/StringView.o \ - ../../AK/JsonObject.o \ ../../AK/JsonValue.o \ - ../../AK/JsonArray.o \ ../../AK/JsonParser.o \ ../../AK/LogStream.o \ ../../Libraries/LibCore/CIODevice.o \ diff --git a/Kernel/Makefile b/Kernel/Makefile index aeb8a15e85..a88112cbc3 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -96,9 +96,7 @@ AK_OBJS = \ ../AK/StringBuilder.o \ ../AK/StringView.o \ ../AK/FileSystemPath.o \ - ../AK/JsonObject.o \ ../AK/JsonValue.o \ - ../AK/JsonArray.o \ ../AK/JsonParser.o \ ../AK/LogStream.o \ ../AK/ELF/ELFImage.o \ diff --git a/Libraries/LibC/Makefile b/Libraries/LibC/Makefile index d39b2703fb..af5580266a 100644 --- a/Libraries/LibC/Makefile +++ b/Libraries/LibC/Makefile @@ -8,8 +8,6 @@ AK_OBJS = \ ../../AK/FileSystemPath.o \ ../../AK/URL.o \ ../../AK/JsonValue.o \ - ../../AK/JsonArray.o \ - ../../AK/JsonObject.o \ ../../AK/JsonParser.o \ ../../AK/LogStream.o \ ../../AK/MappedFile.o \ diff --git a/Libraries/LibHTML/Makefile.host b/Libraries/LibHTML/Makefile.host index 51e0bc82de..9e89498c15 100644 --- a/Libraries/LibHTML/Makefile.host +++ b/Libraries/LibHTML/Makefile.host @@ -11,8 +11,6 @@ EXTRA_OBJS = \ ../../AK/LogStream.o \ ../../AK/JsonValue.o \ ../../AK/JsonParser.o \ - ../../AK/JsonArray.o \ - ../../AK/JsonObject.o \ ../LibCore/CEventLoop.o \ ../LibCore/CObject.o \ ../LibCore/CEvent.o \