Fix var typo and code readability

This commit is contained in:
Rafael Renan Pacheco
2019-12-26 16:44:03 -03:00
committed by Josh Cummings
parent 6141132cfa
commit 5ce0ce3f38

View File

@@ -456,9 +456,11 @@ public class DirectlyConfiguredJwkSetUri extends WebSecurityConfigurerAdapter {
Converter<Jwt, AbstractAuthenticationToken> grantedAuthoritiesExtractor() {
JwtAuthenticationConverter jwtAuthenticationConverter =
new JwtAuthenticationConverter();
jwtAuthenticationConverter.setJwtGrantedAuthoritiesConverter
(new GrantedAuthoritiesExtractor());
return jwtAuthenticationConveter;
return jwtAuthenticationConverter;
}
----