From 0f678d53ba7946deec4282bfa4d6c17847f7a755 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Wed, 21 Dec 2005 00:00:02 +0000 Subject: [PATCH] Javadoc typo in tag. --- .../web/RegExpBasedFilterInvocationDefinitionMap.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java b/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java index 1ca1aa4a9c..e44adfffd5 100644 --- a/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java +++ b/core/src/main/java/org/acegisecurity/intercept/web/RegExpBasedFilterInvocationDefinitionMap.java @@ -34,10 +34,10 @@ import java.util.Vector; /** - * Maintains a List of ConfigAttributeDefinitions + * Maintains a List of ConfigAttributeDefinitions * associated with different HTTP request URL regular expression patterns. * - *

+ *

* Regular expressions are used to match a HTTP request URL against a * ConfigAttributeDefinition. *

@@ -45,14 +45,14 @@ import java.util.Vector; *

* The order of registering the regular expressions using the {@link * #addSecureUrl(String, ConfigAttributeDefinition)} is very important. The - * system will identify the first matching regular expression for a + * system will identify the first matching regular expression for a * given HTTP URL. It will not proceed to evaluate later regular expressions * if a match has already been found. Accordingly, the most specific regular * expressions should be registered first, with the most general regular * expressions registered last. *

* - *

+ *

* If no registered regular expressions match the HTTP URL, null * is returned. *