From c9f676739bb7697cd2a66ab812d04cf507853f30 Mon Sep 17 00:00:00 2001 From: AmitB Date: Sat, 29 Feb 2020 20:57:19 +0530 Subject: [PATCH] Fix typo in AntPathRequestMatcher contructor comment Closes gh-8042 --- .../security/web/util/matcher/AntPathRequestMatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 6630d1a4d6..6e98528749 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 @@ -107,7 +107,7 @@ public final class AntPathRequestMatcher * * @param pattern the ant pattern to use for matching * @param httpMethod the HTTP method. The {@code matches} method will return false if - * the incoming request doesn't doesn't have the same method. + * the incoming request doesn't have the same method. * @param caseSensitive true if the matcher should consider case, else false * @param urlPathHelper if non-null, will be used for extracting the path from the HttpServletRequest */