diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/DateConstructor.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/DateConstructor.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/DateConstructor.cpp b/Userland/Libraries/LibJS/Runtime/DateConstructor.cpp index 34b78ffa2b..115d928a98 100644 --- a/Userland/Libraries/LibJS/Runtime/DateConstructor.cpp +++ b/Userland/Libraries/LibJS/Runtime/DateConstructor.cpp @@ -180,10 +180,6 @@ void DateConstructor::initialize(GlobalObject& global_object) define_direct_property(vm.names.length, Value(7), Attribute::Configurable); } -DateConstructor::~DateConstructor() -{ -} - // 21.4.2.1 Date ( ...values ), https://tc39.es/ecma262/#sec-date ThrowCompletionOr<Value> DateConstructor::call() { |