Skip to content

Commit 5672ba6

Browse files
author
Sreesh Maheshwar
committed
refactor: remove unused StringUtils::EqualsIgnoreCase function
1 parent 6e5976c commit 5672ba6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/iceberg/util/string_util.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ class ICEBERG_EXPORT StringUtils {
4444
[](char c) { return std::toupper(c); }); // NOLINT
4545
return input;
4646
}
47-
48-
static bool EqualsIgnoreCase(const std::string& lhs, const std::string& rhs) {
49-
return std::ranges::equal(
50-
lhs, rhs, [](char lc, char rc) { return std::tolower(lc) == std::tolower(rc); });
51-
}
5247
};
5348

5449
/// \brief Transparent hash function that supports std::string_view as lookup key

0 commit comments

Comments
 (0)