diff options
author | Linus Groh <mail@linusgroh.de> | 2021-06-06 16:54:17 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-06 19:34:43 +0200 |
commit | 60aace8400ee57aecd31f760356a6ddfe3b4d8e8 (patch) | |
tree | 5e53ba5eb7c0e1d50a37c24938bedae0c127699c | |
parent | b661363dfe1c307bb7dfe06ce0acf609cd4c0fdb (diff) | |
download | serenity-60aace8400ee57aecd31f760356a6ddfe3b4d8e8.zip |
LibJS: Remove unused includes from SymbolPrototype.cpp
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/SymbolPrototype.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/SymbolPrototype.cpp b/Userland/Libraries/LibJS/Runtime/SymbolPrototype.cpp index d2a254a1a3..df3eaf44bc 100644 --- a/Userland/Libraries/LibJS/Runtime/SymbolPrototype.cpp +++ b/Userland/Libraries/LibJS/Runtime/SymbolPrototype.cpp @@ -6,7 +6,6 @@ */ #include <AK/Function.h> -#include <AK/StringBuilder.h> #include <LibJS/Heap/Heap.h> #include <LibJS/Runtime/Error.h> #include <LibJS/Runtime/GlobalObject.h> @@ -15,7 +14,6 @@ #include <LibJS/Runtime/SymbolObject.h> #include <LibJS/Runtime/SymbolPrototype.h> #include <LibJS/Runtime/Value.h> -#include <string.h> namespace JS { |