diff --git a/core/src/main/java/org/springframework/security/authentication/AuthenticationTrustResolver.java b/core/src/main/java/org/springframework/security/authentication/AuthenticationTrustResolver.java index 1e37d6c406..450f160332 100644 --- a/core/src/main/java/org/springframework/security/authentication/AuthenticationTrustResolver.java +++ b/core/src/main/java/org/springframework/security/authentication/AuthenticationTrustResolver.java @@ -62,9 +62,9 @@ public interface AuthenticationTrustResolver { * @param authentication to test (may be null in which case the method * will always return false) * @return true the passed authentication token represented an anonymous - * principal & is authenticated using a remember-me token, false + * principal and is authenticated using a remember-me token, false * otherwise - * @since 5.8 + * @since 6.1 */ default boolean isFullyAuthenticated(Authentication authentication) { return !isAnonymous(authentication) && !isRememberMe(authentication);