diff options
author | Tobias Christiansen <tobi@tobyase.de> | 2021-05-11 22:31:21 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-12 08:53:18 +0100 |
commit | a51cee748ffe101d2cdd88ebb0b53e389b359359 (patch) | |
tree | f89550bc23fd912eabaae5ade88dc6df79316295 /Userland | |
parent | 1ec23f38ed4e7efa224f43d2461579a87d974e2e (diff) | |
download | serenity-a51cee748ffe101d2cdd88ebb0b53e389b359359.zip |
LibWeb: Remove unused alphabet constants from ListItemMarkerBox
Why exactly the linter didn't whine about this is a mystery. These
constants aren't needed anymore since the functionality moved to
AK/String a while ago.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/ListItemMarkerBox.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/ListItemMarkerBox.cpp b/Userland/Libraries/LibWeb/Layout/ListItemMarkerBox.cpp index cfefe1286a..0142a4f8de 100644 --- a/Userland/Libraries/LibWeb/Layout/ListItemMarkerBox.cpp +++ b/Userland/Libraries/LibWeb/Layout/ListItemMarkerBox.cpp @@ -11,9 +11,6 @@ namespace Web::Layout { -constexpr auto lower_alpha = "abcdefghijklmnopqrstuvwxyz"; -constexpr auto upper_alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; - ListItemMarkerBox::ListItemMarkerBox(DOM::Document& document, CSS::ListStyleType style_type, size_t index) : Box(document, nullptr, CSS::StyleProperties::create()) , m_list_style_type(style_type) |