Skip to content

Commit 7217bb5

Browse files
committed
Remove FIXME in OAuth2LoginReactiveAuthenticationManager
1 parent 6fe96c6 commit 7217bb5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/authentication/OAuth2LoginReactiveAuthenticationManager.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ public Mono<Authentication> authenticate(Authentication authentication) {
8585
.getAuthorizationRequest().getScopes().contains("openid")) {
8686
// This is an OpenID Connect Authentication Request so return null
8787
// and let OidcAuthorizationCodeReactiveAuthenticationManager handle it instead once one is created
88-
// FIXME: Once we create OidcAuthorizationCodeReactiveAuthenticationManager uncomment below
89-
// return Mono.empty();
88+
return Mono.empty();
9089
}
9190

9291
return this.authorizationCodeManager.authenticate(token)

0 commit comments

Comments
 (0)