Browse Source

LibWeb: Remove unused `TableCellBox::next_cell()`

Aliaksandr Kalenik 2 years ago
parent
commit
577c552209
1 changed files with 0 additions and 3 deletions
  1. 0 3
      Userland/Libraries/LibWeb/Layout/TableCellBox.h

+ 0 - 3
Userland/Libraries/LibWeb/Layout/TableCellBox.h

@@ -18,9 +18,6 @@ public:
     TableCellBox(DOM::Document&, DOM::Element*, CSS::ComputedValues);
     virtual ~TableCellBox() override;
 
-    TableCellBox* next_cell() { return next_sibling_of_type<TableCellBox>(); }
-    TableCellBox const* next_cell() const { return next_sibling_of_type<TableCellBox>(); }
-
     size_t colspan() const;
     size_t rowspan() const;