AK: Remove duplicate begin()/end() methods

begin()/end() returning a ConstItertor already exist further up
in this file. Nothing uses these redundant versions, and they are not
callable.
This commit is contained in:
Nico Weber 2020-11-05 15:55:40 -05:00 committed by Andreas Kling
parent 2c9e6585f8
commit e673abb93f

View file

@ -178,9 +178,6 @@ public:
String to_string() const;
const char* begin() { return m_characters; }
const char* end() { return m_characters + m_length; }
template<typename T, typename... Rest>
bool is_one_of(const T& string, Rest... rest) const
{