From a932d6ecf38ac09397f1bdfb558d40538860efa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A1ndor=20Istv=C3=A1n=20Kr=C3=A1cser?= Date: Wed, 20 Aug 2014 11:24:15 +0200 Subject: [PATCH] Removed unnecessary params from anyRequest()'s javadoc --- .../annotation/web/AbstractRequestMatcherRegistry.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/config/src/main/java/org/springframework/security/config/annotation/web/AbstractRequestMatcherRegistry.java b/config/src/main/java/org/springframework/security/config/annotation/web/AbstractRequestMatcherRegistry.java index 6b0deaf575..b595bf1f1c 100644 --- a/config/src/main/java/org/springframework/security/config/annotation/web/AbstractRequestMatcherRegistry.java +++ b/config/src/main/java/org/springframework/security/config/annotation/web/AbstractRequestMatcherRegistry.java @@ -41,10 +41,6 @@ public abstract class AbstractRequestMatcherRegistry { /** * Maps any request. * - * @param method the {@link HttpMethod} to use or {@code null} for any {@link HttpMethod}. - * @param antPatterns the ant patterns to create {@link org.springframework.security.web.util.matcher.AntPathRequestMatcher} - * from - * * @return the object that is chained after creating the {@link RequestMatcher} */ public C anyRequest() { @@ -181,7 +177,7 @@ public abstract class AbstractRequestMatcherRegistry { /** * Create a {@link List} of {@link RegexRequestMatcher} instances that do not specify an {@link HttpMethod}. * - * @param regexPatterns the regular expressions to create {@link RegexRequestMatcher} from + * @param regexPatterns the regular expressions to create {@link RegexRequestMatcher} from * * @return a {@link List} of {@link RegexRequestMatcher} instances */