From a547f6922aa79e3d556a062c8ad70d92e8283fc3 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Fri, 20 Jul 2012 16:38:27 -0500 Subject: [PATCH] SEC-1996: Fix javadoc to work with jdk 1.5 The javadoc did not work with JDK 1.5 due to a JDK bug fixed in JDK 1.6. This changed the javadoc that had a tag that started with . This resolves the issue with the JDK 1.5 javadoc bug. --- .../main/java/org/springframework/security/config/BeanIds.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/src/main/java/org/springframework/security/config/BeanIds.java b/config/src/main/java/org/springframework/security/config/BeanIds.java index 077904a2cf..996011af3b 100644 --- a/config/src/main/java/org/springframework/security/config/BeanIds.java +++ b/config/src/main/java/org/springframework/security/config/BeanIds.java @@ -11,7 +11,7 @@ package org.springframework.security.config; public abstract class BeanIds { private static final String PREFIX = "org.springframework.security."; - /** The "global" AuthenticationManager instance, registered by the element */ + /** The "global" AuthenticationManager instance, registered by the <authentication-manager> element */ public static final String AUTHENTICATION_MANAGER = PREFIX + "authenticationManager"; /** External alias for FilterChainProxy bean, for use in web.xml files */