From 9bf2d3cd864935ad5f575d1c0b41ab42724c5798 Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Tue, 29 Nov 2022 16:34:54 -0700 Subject: [PATCH] Polish JavaDoc - Replace ampersand - Correct since version Issue gh-11510 --- .../security/authentication/AuthenticationTrustResolver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);