Skip to content

Commit 838b4d6

Browse files
committed
Fix Nullable declaration in PatternMatchUtils
1 parent 2a3e7ea commit 838b4d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public static boolean simpleMatch(String @Nullable [] patterns, @Nullable String
126126
/**
127127
* Variant of {@link #simpleMatch(String[], String)} that ignores upper/lower case.
128128
*/
129-
public static boolean simpleMatchIgnoreCase(@Nullable String[] patterns, @Nullable String str) {
129+
public static boolean simpleMatchIgnoreCase(String @Nullable [] patterns, @Nullable String str) {
130130
if (patterns != null) {
131131
for (String pattern : patterns) {
132132
if (simpleMatch(pattern, str, true)) {

0 commit comments

Comments
 (0)