Skip to content

Commit 3c228a5

Browse files
committed
Add missing @SInCE tags in PatternMatchUtils
See: gh-34801
1 parent 9bf6b8c commit 3c228a5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

spring-core/src/main/java/org/springframework/util/PatternMatchUtils.java

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public static boolean simpleMatch(@Nullable String pattern, @Nullable String str
4242

4343
/**
4444
* Variant of {@link #simpleMatch(String, String)} that ignores upper/lower case.
45+
* @since 6.1.20
4546
*/
4647
public static boolean simpleMatchIgnoreCase(@Nullable String pattern, @Nullable String str) {
4748
return simpleMatch(pattern, str, true);
@@ -125,6 +126,7 @@ public static boolean simpleMatch(@Nullable String[] patterns, @Nullable String
125126

126127
/**
127128
* Variant of {@link #simpleMatch(String[], String)} that ignores upper/lower case.
129+
* @since 6.1.20
128130
*/
129131
public static boolean simpleMatchIgnoreCase(@Nullable String[] patterns, @Nullable String str) {
130132
if (patterns != null) {

0 commit comments

Comments
 (0)