diff --git a/web/src/main/java/org/springframework/security/web/server/util/matcher/AndServerWebExchangeMatcher.java b/web/src/main/java/org/springframework/security/web/server/util/matcher/AndServerWebExchangeMatcher.java index df5ea7e5b3..4bd7a02d39 100644 --- a/web/src/main/java/org/springframework/security/web/server/util/matcher/AndServerWebExchangeMatcher.java +++ b/web/src/main/java/org/springframework/security/web/server/util/matcher/AndServerWebExchangeMatcher.java @@ -42,9 +42,9 @@ public class AndServerWebExchangeMatcher implements ServerWebExchangeMatcher { private static final Log logger = LogFactory.getLog(AndServerWebExchangeMatcher.class); - private final List matchers; + private final List matchers; - public AndServerWebExchangeMatcher(List matchers) { + public AndServerWebExchangeMatcher(List matchers) { Assert.notEmpty(matchers, "matchers cannot be empty"); this.matchers = matchers; } diff --git a/web/src/main/java/org/springframework/security/web/server/util/matcher/OrServerWebExchangeMatcher.java b/web/src/main/java/org/springframework/security/web/server/util/matcher/OrServerWebExchangeMatcher.java index 5335e86d9f..84f2b1dfc3 100644 --- a/web/src/main/java/org/springframework/security/web/server/util/matcher/OrServerWebExchangeMatcher.java +++ b/web/src/main/java/org/springframework/security/web/server/util/matcher/OrServerWebExchangeMatcher.java @@ -40,9 +40,9 @@ public class OrServerWebExchangeMatcher implements ServerWebExchangeMatcher { private static final Log logger = LogFactory.getLog(OrServerWebExchangeMatcher.class); - private final List matchers; + private final List matchers; - public OrServerWebExchangeMatcher(List matchers) { + public OrServerWebExchangeMatcher(List matchers) { Assert.notEmpty(matchers, "matchers cannot be empty"); this.matchers = matchers; } diff --git a/web/src/main/java/org/springframework/security/web/util/matcher/AndRequestMatcher.java b/web/src/main/java/org/springframework/security/web/util/matcher/AndRequestMatcher.java index 73a234544f..2655d61719 100644 --- a/web/src/main/java/org/springframework/security/web/util/matcher/AndRequestMatcher.java +++ b/web/src/main/java/org/springframework/security/web/util/matcher/AndRequestMatcher.java @@ -36,13 +36,13 @@ import org.springframework.util.Assert; */ public final class AndRequestMatcher implements RequestMatcher { - private final List requestMatchers; + private final List requestMatchers; /** * Creates a new instance * @param requestMatchers the {@link RequestMatcher} instances to try */ - public AndRequestMatcher(List requestMatchers) { + public AndRequestMatcher(List requestMatchers) { Assert.notEmpty(requestMatchers, "requestMatchers must contain a value"); Assert.noNullElements(requestMatchers, "requestMatchers cannot contain null values"); this.requestMatchers = requestMatchers; diff --git a/web/src/main/java/org/springframework/security/web/util/matcher/OrRequestMatcher.java b/web/src/main/java/org/springframework/security/web/util/matcher/OrRequestMatcher.java index 74b12cfa57..a9c91d7fe7 100644 --- a/web/src/main/java/org/springframework/security/web/util/matcher/OrRequestMatcher.java +++ b/web/src/main/java/org/springframework/security/web/util/matcher/OrRequestMatcher.java @@ -34,13 +34,13 @@ import org.springframework.util.Assert; */ public final class OrRequestMatcher implements RequestMatcher { - private final List requestMatchers; + private final List requestMatchers; /** * Creates a new instance * @param requestMatchers the {@link RequestMatcher} instances to try */ - public OrRequestMatcher(List requestMatchers) { + public OrRequestMatcher(List requestMatchers) { Assert.notEmpty(requestMatchers, "requestMatchers must contain a value"); Assert.noNullElements(requestMatchers, "requestMatchers cannot contain null values"); this.requestMatchers = requestMatchers;