diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-04-12 16:21:10 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-12 23:03:46 +0200 |
commit | 782cdd6b9167a14456b35348e4cdf080b3e0f2d1 (patch) | |
tree | 90c247613cd46f53cc60d668df7b2b9e3676e784 | |
parent | 269810b95464b65c57c53f2c97cca876df8c992b (diff) | |
download | serenity-782cdd6b9167a14456b35348e4cdf080b3e0f2d1.zip |
LibWeb: Break friendship between CSS DeclarationOrAtRule and Parser
This actually wasn't needed for anything, hooray!
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.h b/Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.h index 079b4c9b19..e8b8f67a84 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.h +++ b/Userland/Libraries/LibWeb/CSS/Parser/DeclarationOrAtRule.h @@ -12,8 +12,6 @@ namespace Web::CSS::Parser { class DeclarationOrAtRule { - friend class Parser; - public: explicit DeclarationOrAtRule(RefPtr<StyleRule> at); explicit DeclarationOrAtRule(Declaration declaration); |