Skip to content

Commit 9bf2d3c

Browse files
committed
Polish JavaDoc
- Replace ampersand - Correct since version Issue gh-11510
1 parent 5fcbb9f commit 9bf2d3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/org/springframework/security/authentication/AuthenticationTrustResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ public interface AuthenticationTrustResolver {
6262
* @param authentication to test (may be <code>null</code> in which case the method
6363
* will always return <code>false</code>)
6464
* @return <code>true</code> the passed authentication token represented an anonymous
65-
* principal & is authenticated using a remember-me token, <code>false</code>
65+
* principal and is authenticated using a remember-me token, <code>false</code>
6666
* otherwise
67-
* @since 5.8
67+
* @since 6.1
6868
*/
6969
default boolean isFullyAuthenticated(Authentication authentication) {
7070
return !isAnonymous(authentication) && !isRememberMe(authentication);

0 commit comments

Comments
 (0)