1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:37:35 +00:00

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.
This commit is contained in:
Tobias Christiansen 2021-05-11 22:31:21 +02:00 committed by Linus Groh
parent 1ec23f38ed
commit a51cee748f

View file

@ -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)