Update Checkstyle

Issue gh-14178
This commit is contained in:
Josh Cummings 2024-01-22 08:44:54 -07:00
parent 04394a63cd
commit 7ee974445b
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
2 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ public final class OidcIdTokenDecoderFactory implements JwtDecoderFactory<Client
}
return NimbusJwtDecoder.withJwkSetUri(jwkSetUri)
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
.restOperations(restOperationsFactory.apply(clientRegistration))
.restOperations(this.restOperationsFactory.apply(clientRegistration))
.build();
}
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {

View File

@ -168,7 +168,7 @@ public final class ReactiveOidcIdTokenDecoderFactory implements ReactiveJwtDecod
}
return NimbusReactiveJwtDecoder.withJwkSetUri(jwkSetUri)
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
.webClient(webClientFactory.apply(clientRegistration))
.webClient(this.webClientFactory.apply(clientRegistration))
.build();
}
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {