Merge branch '6.2.x'

This commit is contained in:
rstoyanchev
2025-05-14 15:16:12 +01:00

View File

@@ -42,6 +42,7 @@ public abstract class PatternMatchUtils {
/**
* Variant of {@link #simpleMatch(String, String)} that ignores upper/lower case.
* @since 6.1.20
*/
public static boolean simpleMatchIgnoreCase(@Nullable String pattern, @Nullable String str) {
return simpleMatch(pattern, str, true);
@@ -125,6 +126,7 @@ public abstract class PatternMatchUtils {
/**
* Variant of {@link #simpleMatch(String[], String)} that ignores upper/lower case.
* @since 6.1.20
*/
public static boolean simpleMatchIgnoreCase(String @Nullable [] patterns, @Nullable String str) {
if (patterns != null) {