소스 검색

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 <a and was not
closed to escape the < >. This resolves the issue with the JDK 1.5 javadoc
bug.
Rob Winch 13 년 전
부모
커밋
a547f6922a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      config/src/main/java/org/springframework/security/config/BeanIds.java

+ 1 - 1
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 <authentication-manager> element */
+    /** The "global" AuthenticationManager instance, registered by the &lt;authentication-manager&gt; element */
     public static final String AUTHENTICATION_MANAGER = PREFIX + "authenticationManager";
 
     /** External alias for FilterChainProxy bean, for use in web.xml files */