Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/issues/10_npe_trust_store_path' …
Browse files Browse the repository at this point in the history
…into develop

* origin/issues/10_npe_trust_store_path:
  remove toString from possible null path
  • Loading branch information
wetret committed Aug 1, 2024
2 parents efaa91c + 3f495bd commit 94b6cf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.medizininformatik-initiative</groupId>
<artifactId>mii-processes-common</artifactId>
<version>1.0.3.0-SNAPSHOT</version>
<version>1.0.2.1-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ public boolean isConfigured()
public String getInfo()
{
return "[issuerUrl: " + issuerUrl + ", clientId: " + clientId + ", clientSecret: "
+ (clientSecret != null ? "***" : "null") + ", trustStorePath: " + trustStorePath.toString()
+ ", proxyUrl: " + proxyUrl + ", proxyUsername: " + proxyUsername + ", proxyPassword: "
+ (clientSecret != null ? "***" : "null") + ", trustStorePath: " + trustStorePath + ", proxyUrl: "
+ proxyUrl + ", proxyUsername: " + proxyUsername + ", proxyPassword: "
+ (proxyPassword != null ? "***" : "null") + "]";
}

Expand Down

0 comments on commit 94b6cf2

Please sign in to comment.