Polish formatting ServerHttpSecurity JwtSpec

Fixes: gh-5728
This commit is contained in:
Rob Winch 2018-08-23 15:10:05 -05:00
parent cba2444e1a
commit 820fb7d828
1 changed files with 1 additions and 1 deletions

View File

@ -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);