1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Enable null-safety in spring-security-oauth2-client

Closes gh-17819
This commit is contained in:
Joe Grandja
2026-03-16 14:32:47 -04:00
parent bb062585a8
commit baad23caab
126 changed files with 1381 additions and 533 deletions
@@ -43,7 +43,7 @@ class ServerWebClientHttpInterfaceIntegrationConfiguration {
fun securityConfigurer(
manager: ReactiveOAuth2AuthorizedClientManager?
): OAuth2WebClientHttpServiceGroupConfigurer {
return OAuth2WebClientHttpServiceGroupConfigurer.from(manager)
return OAuth2WebClientHttpServiceGroupConfigurer.from(requireNotNull(manager))
}
// end::config[]