diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/WeakRefConstructor.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/WeakRefConstructor.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/WeakRefConstructor.cpp b/Userland/Libraries/LibJS/Runtime/WeakRefConstructor.cpp index 7b38c121d6..ced1ec3e35 100644 --- a/Userland/Libraries/LibJS/Runtime/WeakRefConstructor.cpp +++ b/Userland/Libraries/LibJS/Runtime/WeakRefConstructor.cpp @@ -28,10 +28,6 @@ void WeakRefConstructor::initialize(GlobalObject& global_object) define_direct_property(vm.names.length, Value(1), Attribute::Configurable); } -WeakRefConstructor::~WeakRefConstructor() -{ -} - // 26.1.1.1 WeakRef ( target ), https://tc39.es/ecma262/#sec-weak-ref-target ThrowCompletionOr<Value> WeakRefConstructor::call() { |