From 820fb7d828f3c24ae29ca05325e345fc8ced69a3 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Thu, 23 Aug 2018 15:10:05 -0500 Subject: [PATCH] Polish formatting ServerHttpSecurity JwtSpec Fixes: gh-5728 --- .../security/config/web/server/ServerHttpSecurity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);