فهرست منبع

Polish formatting ServerHttpSecurity JwtSpec

Fixes: gh-5728
Rob Winch 7 سال پیش
والد
کامیت
820fb7d828
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java

+ 1 - 1
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);