Skip to content

Commit

Permalink
Update extensions/oidc/runtime/src/main/java/io/quarkus/oidc/OidcTena…
Browse files Browse the repository at this point in the history
…ntConfig.java

Co-authored-by: George Gastaldi <[email protected]>
  • Loading branch information
sberyozkin and gastaldi authored Mar 20, 2024
1 parent 71ee81e commit 80e4589
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public Optional<String> getTrustStorePassword() {
}

public void setTrustStorePassword(String trustStorePassword) {
this.trustStorePassword = Optional.of(trustStorePassword);
this.trustStorePassword = Optional.ofNullable(trustStorePassword);
}
}

Expand Down

0 comments on commit 80e4589

Please sign in to comment.