Fix Formatting

Issue gh-44
This commit is contained in:
Josh Cummings 2021-09-27 16:57:16 -06:00
parent c4eaac0423
commit 76d4b1e5a3
2 changed files with 2 additions and 0 deletions

View File

@ -96,4 +96,5 @@ public class RestConfig extends WebSecurityConfigurerAdapter {
JWKSource<SecurityContext> jwks = new ImmutableJWKSet<>(new JWKSet(jwk)); JWKSource<SecurityContext> jwks = new ImmutableJWKSet<>(new JWKSet(jwk));
return new NimbusJwtEncoder(jwks); return new NimbusJwtEncoder(jwks);
} }
} }

View File

@ -57,4 +57,5 @@ public class TokenController {
// @formatter:on // @formatter:on
return this.encoder.encode(JwtEncoderParameters.from(claims)).getTokenValue(); return this.encoder.encode(JwtEncoderParameters.from(claims)).getTokenValue();
} }
} }