mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
Fix Nullable declaration in PatternMatchUtils
This commit is contained in:
@@ -126,7 +126,7 @@ public abstract class PatternMatchUtils {
|
||||
/**
|
||||
* Variant of {@link #simpleMatch(String[], String)} that ignores upper/lower case.
|
||||
*/
|
||||
public static boolean simpleMatchIgnoreCase(@Nullable String[] patterns, @Nullable String str) {
|
||||
public static boolean simpleMatchIgnoreCase(String @Nullable [] patterns, @Nullable String str) {
|
||||
if (patterns != null) {
|
||||
for (String pattern : patterns) {
|
||||
if (simpleMatch(pattern, str, true)) {
|
||||
|
||||
Reference in New Issue
Block a user