From 875e59b74018233b6d669aa3f6024f35ed40e468 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Fri, 6 May 2022 19:12:10 +0200 Subject: [PATCH] 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. --- Userland/Libraries/LibJS/Runtime/Date.cpp | 1 - 1 file changed, 1 deletion(-) 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 #include #include -#include #include #include #include