From af2bcc3b56d9062a7284fc19e89a850b3460e4dc Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sun, 3 Dec 2023 16:56:32 +1300 Subject: [PATCH] LibWeb: Remove Weakable from Web::Page Nothing requires this any more. --- Userland/Libraries/LibWeb/Page/Page.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Userland/Libraries/LibWeb/Page/Page.h b/Userland/Libraries/LibWeb/Page/Page.h index 4ab3fd1a8fa..487713a55d9 100644 --- a/Userland/Libraries/LibWeb/Page/Page.h +++ b/Userland/Libraries/LibWeb/Page/Page.h @@ -37,9 +37,7 @@ namespace Web { class PageClient; -class Page final - : public JS::Cell - , public Weakable { +class Page final : public JS::Cell { JS_CELL(Page, JS::Cell); public: