summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-05-06 19:12:10 +0200
committerLinus Groh <mail@linusgroh.de>2022-05-06 22:32:47 +0200
commit875e59b74018233b6d669aa3f6024f35ed40e468 (patch)
treecb7398ea790303400d7e1350d1dd5c87981decf5 /Userland/Libraries/LibJS/Runtime
parent4dd9102f5edb44645913ad9c0ca9aa6bceee73b4 (diff)
downloadserenity-875e59b74018233b6d669aa3f6024f35ed40e468.zip
LibJS: Remove unused LibCore/DateTime.h header from Date.cpp
We use a double for [[DateValue]] and the spec's own AOs for any calculations now.
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime')
-rw-r--r--Userland/Libraries/LibJS/Runtime/Date.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Date.cpp b/Userland/Libraries/LibJS/Runtime/Date.cpp
index 7f5f3dbbf4..078036b2d2 100644
--- a/Userland/Libraries/LibJS/Runtime/Date.cpp
+++ b/Userland/Libraries/LibJS/Runtime/Date.cpp
@@ -8,7 +8,6 @@
#include <AK/NumericLimits.h>
#include <AK/StringBuilder.h>
#include <AK/Time.h>
-#include <LibCore/DateTime.h>
#include <LibJS/Runtime/AbstractOperations.h>
#include <LibJS/Runtime/Date.h>
#include <LibJS/Runtime/GlobalObject.h>