From 66f923dab74280e2d98e3d547356a620303eefea Mon Sep 17 00:00:00 2001 From: Artyom Tarynin Date: Mon, 11 May 2020 20:13:43 +0300 Subject: [PATCH] Update AntPathRequestMatcher.java Fixes gh-8512 --- .../security/web/util/matcher/AntPathRequestMatcher.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java b/web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java index 12e26b4f787..4bdfb6c55df 100644 --- a/web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java +++ b/web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java @@ -67,7 +67,7 @@ public final class AntPathRequestMatcher /** * Creates a matcher with the specific pattern which will match all HTTP methods in a - * case insensitive manner. + * case sensitive manner. * * @param pattern the ant pattern to use for matching */ @@ -76,7 +76,7 @@ public AntPathRequestMatcher(String pattern) { } /** - * Creates a matcher with the supplied pattern and HTTP method in a case insensitive + * Creates a matcher with the supplied pattern and HTTP method in a case sensitive * manner. * * @param pattern the ant pattern to use for matching