diff options
author | Andreas Kling <kling@serenityos.org> | 2022-03-29 15:45:29 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-29 16:35:46 +0200 |
commit | 3efa6cedec027647a2e4d6fcb1408102a6b3a98c (patch) | |
tree | 43bfa8968cb24eb4732e4a3fc34c1d5461b9b250 /Userland | |
parent | 0de488749fa9648e0aa1fc654e6b8a0be490cf03 (diff) | |
download | serenity-3efa6cedec027647a2e4d6fcb1408102a6b3a98c.zip |
LibWeb: Remove unused StyleSheetList::m_generation
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/StyleSheetList.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleSheetList.h b/Userland/Libraries/LibWeb/CSS/StyleSheetList.h index 0fe931bece..be152a1875 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleSheetList.h +++ b/Userland/Libraries/LibWeb/CSS/StyleSheetList.h @@ -51,8 +51,6 @@ private: DOM::Document& m_document; NonnullRefPtrVector<CSSStyleSheet> m_sheets; - - int m_generation { 0 }; }; } |