Skip to content

Commit 5571ad1

Browse files
authored
Fix issues identified in PR review
Signed-off-by: Tomas Borghi <137845283+Borghii@users.noreply.github.com>
1 parent e3a715b commit 5571ad1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

web/src/main/java/org/springframework/security/web/webauthn/management/Webauthn4JRelyingPartyOperations.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -346,8 +346,7 @@ public PublicKeyCredentialRequestOptions createCredentialRequestOptions(
346346
}
347347

348348
private List<CredentialRecord> findCredentialRecords(Authentication authentication) {
349-
AuthenticationTrustResolver trustResolver = new AuthenticationTrustResolverImpl();
350-
if (authentication == null || trustResolver.isAnonymous(authentication)) {
349+
if (authentication == null || this.trustResolver.isAnonymous(authentication)) {
351350
return Collections.emptyList();
352351
}
353352
PublicKeyCredentialUserEntity userEntity = this.userEntities.findByUsername(authentication.getName());

0 commit comments

Comments
 (0)