1
0
mirror of synced 2026-08-05 09:47:05 +00:00

remove redundant modifiers found by checkstyle

This commit is contained in:
Lars Grefer
2019-08-10 00:18:56 +02:00
parent d9016e52e6
commit ff1070df36
124 changed files with 187 additions and 190 deletions
@@ -191,7 +191,7 @@ class UserConfig extends WebSecurityConfigurerAdapter {
class IntrospectEndpoint {
TokenStore tokenStore;
public IntrospectEndpoint(TokenStore tokenStore) {
IntrospectEndpoint(TokenStore tokenStore) {
this.tokenStore = tokenStore;
}
@@ -226,7 +226,7 @@ class IntrospectEndpoint {
class JwkSetEndpoint {
KeyPair keyPair;
public JwkSetEndpoint(KeyPair keyPair) {
JwkSetEndpoint(KeyPair keyPair) {
this.keyPair = keyPair;
}