From a51cee748ffe101d2cdd88ebb0b53e389b359359 Mon Sep 17 00:00:00 2001 From: Tobias Christiansen Date: Tue, 11 May 2021 22:31:21 +0200 Subject: [PATCH] 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. --- Userland/Libraries/LibWeb/Layout/ListItemMarkerBox.cpp | 3 --- 1 file changed, 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)