浏览代码

LibWeb: Remove Weakable from Web::Page

Nothing requires this any more.
Shannon Booth 1 年之前
父节点
当前提交
af2bcc3b56
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      Userland/Libraries/LibWeb/Page/Page.h

+ 1 - 3
Userland/Libraries/LibWeb/Page/Page.h

@@ -37,9 +37,7 @@ namespace Web {
 
 class PageClient;
 
-class Page final
-    : public JS::Cell
-    , public Weakable<Page> {
+class Page final : public JS::Cell {
     JS_CELL(Page, JS::Cell);
 
 public: