diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-10-01 11:24:54 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-10-01 11:24:54 +0200 |
commit | 4bfd4dc6c7c50524f2c6382692cf599e1c62b94e (patch) | |
tree | d1f25073bdbab6dc8a6b71afc4c588e0659fb59f /AK | |
parent | 08a1fb8f1a1e762fa4dc0e67d8162582a6ba2823 (diff) | |
download | serenity-4bfd4dc6c7c50524f2c6382692cf599e1c62b94e.zip |
AK: Remove empty files JsonArray.cpp and JsonObject.cpp
Diffstat (limited to 'AK')
-rw-r--r-- | AK/JsonArray.cpp | 6 | ||||
-rw-r--r-- | AK/JsonObject.cpp | 6 | ||||
-rw-r--r-- | AK/Tests/Makefile | 2 |
3 files changed, 0 insertions, 14 deletions
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 <AK/JsonArray.h> -#include <AK/StringBuilder.h> - -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 <AK/JsonObject.h> -#include <AK/StringBuilder.h> - -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 \ |