Sfoglia il codice sorgente

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.
Tobias Christiansen 4 anni fa
parent
commit
a51cee748f
1 ha cambiato i file con 0 aggiunte e 3 eliminazioni
  1. 0 3
      Userland/Libraries/LibWeb/Layout/ListItemMarkerBox.cpp

+ 0 - 3
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)