Update Checkstyle
Issue gh-14178
This commit is contained in:
@@ -171,7 +171,7 @@ public final class OidcIdTokenDecoderFactory implements JwtDecoderFactory<Client
|
|||||||
}
|
}
|
||||||
return NimbusJwtDecoder.withJwkSetUri(jwkSetUri)
|
return NimbusJwtDecoder.withJwkSetUri(jwkSetUri)
|
||||||
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
||||||
.restOperations(restOperationsFactory.apply(clientRegistration))
|
.restOperations(this.restOperationsFactory.apply(clientRegistration))
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ public final class ReactiveOidcIdTokenDecoderFactory implements ReactiveJwtDecod
|
|||||||
}
|
}
|
||||||
return NimbusReactiveJwtDecoder.withJwkSetUri(jwkSetUri)
|
return NimbusReactiveJwtDecoder.withJwkSetUri(jwkSetUri)
|
||||||
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
||||||
.webClient(webClientFactory.apply(clientRegistration))
|
.webClient(this.webClientFactory.apply(clientRegistration))
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
||||||
|
|||||||
Reference in New Issue
Block a user