Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hit-lacus committed Nov 10, 2023
1 parent 0e0d8a1 commit b60d5ae
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,9 @@ public String exportAllToString() {
for (Map.Entry<Object, Object> entry : allProps.entrySet()) {
String key = entry.getKey().toString();
String value = entry.getValue().toString();
if (key.contains("password") || value.contains("password")) {
continue;
}
orderedProperties.setProperty(key, value);
}
// Reset some properties which might be overriden by system properties
Expand Down

0 comments on commit b60d5ae

Please sign in to comment.