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 6b96696f2d..3a2c512de9 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 @@ -35,13 +35,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 8204dc77b9..4ec50ce6f2 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 @@ -33,13 +33,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;