Skip to content

Commit 74b3f10

Browse files
Valentin Brückelrrayst
authored andcommitted
have setter return void
1 parent a389312 commit 74b3f10

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

  • core/src/main/java/com/predic8/membrane/core/interceptor/jwt

core/src/main/java/com/predic8/membrane/core/interceptor/jwt/Jwks.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,11 @@ public String getJwksUris() {
114114
}
115115

116116
@MCAttribute
117-
public Jwks setJwksUris(String jwksUris) {
117+
public void setJwksUris(String jwksUris) {
118118
if (jwksUris == null) {
119119
this.jwksUris = emptyList();
120-
return this;
121120
}
122121
this.jwksUris = StringList.parseToList(jwksUris);
123-
return this;
124122
}
125123

126124
public Optional<RsaJsonWebKey> getKeyByKid(String kid) {

0 commit comments

Comments
 (0)