diff --git a/config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java b/config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java index 91f0a24ba7..7a5ec0c262 100644 --- a/config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java +++ b/config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java @@ -741,7 +741,7 @@ public class ServerHttpSecurity { protected void configure(ServerHttpSecurity http) { BearerTokenServerAuthenticationEntryPoint entryPoint = new BearerTokenServerAuthenticationEntryPoint(); - ReactiveJwtDecoder jwtDecoder = this.getJwtDecoder(); + ReactiveJwtDecoder jwtDecoder = getJwtDecoder(); JwtReactiveAuthenticationManager authenticationManager = new JwtReactiveAuthenticationManager( jwtDecoder); AuthenticationWebFilter oauth2 = new AuthenticationWebFilter(authenticationManager);