소스 검색

Polish JavaDoc

- Replace ampersand
- Correct since version

Issue gh-11510
Josh Cummings 2 년 전
부모
커밋
9bf2d3cd86
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      core/src/main/java/org/springframework/security/authentication/AuthenticationTrustResolver.java

+ 2 - 2
core/src/main/java/org/springframework/security/authentication/AuthenticationTrustResolver.java

@@ -62,9 +62,9 @@ public interface AuthenticationTrustResolver {
 	 * @param authentication to test (may be <code>null</code> in which case the method
 	 * will always return <code>false</code>)
 	 * @return <code>true</code> the passed authentication token represented an anonymous
-	 * principal & is authenticated using a remember-me token, <code>false</code>
+	 * principal and is authenticated using a remember-me token, <code>false</code>
 	 * otherwise
-	 * @since 5.8
+	 * @since 6.1
 	 */
 	default boolean isFullyAuthenticated(Authentication authentication) {
 		return !isAnonymous(authentication) && !isRememberMe(authentication);