From 5672ba6c130b49605a3e1891bf584030237de267 Mon Sep 17 00:00:00 2001 From: Sreesh Maheshwar Date: Sun, 19 Oct 2025 18:29:35 +0100 Subject: [PATCH] refactor: remove unused `StringUtils::EqualsIgnoreCase` function --- src/iceberg/util/string_util.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/iceberg/util/string_util.h b/src/iceberg/util/string_util.h index a22aa7a5d..a0fccfd35 100644 --- a/src/iceberg/util/string_util.h +++ b/src/iceberg/util/string_util.h @@ -44,11 +44,6 @@ class ICEBERG_EXPORT StringUtils { [](char c) { return std::toupper(c); }); // NOLINT return input; } - - static bool EqualsIgnoreCase(const std::string& lhs, const std::string& rhs) { - return std::ranges::equal( - lhs, rhs, [](char lc, char rc) { return std::tolower(lc) == std::tolower(rc); }); - } }; /// \brief Transparent hash function that supports std::string_view as lookup key