LibWeb: Remove no-op impl() methods from the WEB_PLATFORM_OBJECT macro

These are leftovers from when wrapper objects still had an internal
implementation, which is no longer the case.
This commit is contained in:
Linus Groh 2022-09-21 17:45:18 +01:00
commit 6055b0e850
Notes: sideshowbarker 2024-07-18 05:01:22 +09:00
14 changed files with 28 additions and 39 deletions

View file

@ -353,7 +353,7 @@ JS::ThrowCompletionOr<bool> CSSStyleDeclaration::internal_set(JS::PropertyKey co
auto css_text = TRY(value.to_string(vm()));
impl().set_property(property_id, css_text);
set_property(property_id, css_text);
return true;
}