AK: Remove unused ByteString titlecase/invert case conversions

This commit is contained in:
Timothy Flynn 2025-04-06 10:16:24 -04:00 committed by Andreas Kling
commit 05627b6f45
Notes: github-actions[bot] 2025-04-07 15:45:57 +00:00
4 changed files with 0 additions and 27 deletions

View file

@ -371,16 +371,6 @@ ByteString ByteString::to_snakecase() const
return StringUtils::to_snakecase(*this);
}
ByteString ByteString::to_titlecase() const
{
return StringUtils::to_titlecase(*this);
}
ByteString ByteString::invert_case() const
{
return StringUtils::invert_case(*this);
}
bool ByteString::operator==(char const* cstring) const
{
if (!cstring)