diff options
author | Linus Groh <mail@linusgroh.de> | 2021-09-15 18:36:06 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-09-15 18:36:06 +0100 |
commit | 657d17ace3c3fd4e99083e4fedbc2b430c256e8d (patch) | |
tree | 96c2843eea862756b11933b85bbf406fb5001afa /Userland/Libraries | |
parent | d7ffa5142498095644055f11aba99bad351221d5 (diff) | |
download | serenity-657d17ace3c3fd4e99083e4fedbc2b430c256e8d.zip |
LibJS: Remove two unused includes from AbstractOperations.cpp
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/AbstractOperations.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/AbstractOperations.cpp b/Userland/Libraries/LibJS/Runtime/AbstractOperations.cpp index 1bf920174a..7e4642c350 100644 --- a/Userland/Libraries/LibJS/Runtime/AbstractOperations.cpp +++ b/Userland/Libraries/LibJS/Runtime/AbstractOperations.cpp @@ -21,7 +21,6 @@ #include <LibJS/Runtime/ErrorTypes.h> #include <LibJS/Runtime/FunctionEnvironment.h> #include <LibJS/Runtime/FunctionObject.h> -#include <LibJS/Runtime/GlobalEnvironment.h> #include <LibJS/Runtime/GlobalObject.h> #include <LibJS/Runtime/Object.h> #include <LibJS/Runtime/ObjectEnvironment.h> @@ -29,7 +28,6 @@ #include <LibJS/Runtime/PropertyName.h> #include <LibJS/Runtime/ProxyObject.h> #include <LibJS/Runtime/Reference.h> -#include <LibJS/Runtime/Utf16String.h> namespace JS { |