diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Shape.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Shape.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Shape.cpp b/Userland/Libraries/LibJS/Runtime/Shape.cpp index 0b0f2f96b7..b7e51fc9e3 100644 --- a/Userland/Libraries/LibJS/Runtime/Shape.cpp +++ b/Userland/Libraries/LibJS/Runtime/Shape.cpp @@ -247,11 +247,4 @@ FLATTEN void Shape::add_property_without_transition(PropertyKey const& property_ add_property_without_transition(property_name.to_string_or_symbol(), attributes); } -#ifdef JS_TRACK_ZOMBIE_CELLS -void Shape::did_become_zombie() -{ - revoke_weak_ptrs(); -} -#endif - } |