summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/WeakSetConstructor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/WeakSetConstructor.cpp')
-rw-r--r--Userland/Libraries/LibJS/Runtime/WeakSetConstructor.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/WeakSetConstructor.cpp b/Userland/Libraries/LibJS/Runtime/WeakSetConstructor.cpp
index 228ec083aa..c83c1725ba 100644
--- a/Userland/Libraries/LibJS/Runtime/WeakSetConstructor.cpp
+++ b/Userland/Libraries/LibJS/Runtime/WeakSetConstructor.cpp
@@ -29,10 +29,6 @@ void WeakSetConstructor::initialize(GlobalObject& global_object)
define_direct_property(vm.names.length, Value(0), Attribute::Configurable);
}
-WeakSetConstructor::~WeakSetConstructor()
-{
-}
-
// 24.4.1.1 WeakSet ( [ iterable ] ), https://tc39.es/ecma262/#sec-weakset-iterable
ThrowCompletionOr<Value> WeakSetConstructor::call()
{