Skip to content

Commit

Permalink
Merge pull request #258 from jglick/MaskingOutputStream.toString
Browse files Browse the repository at this point in the history
Legible `MaskingOutputStream.toString`
  • Loading branch information
jtnord authored Jul 26, 2023
2 parents 021fd9e + 7a3d6ce commit 58c0fbd
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ public MaskingOutputStream(@NonNull OutputStream out, @NonNull Supplier<Pattern>
}
}

@Override public String toString() {
return "MaskingOutputStream[" + out + "]";

Check warning on line 139 in src/main/java/org/jenkinsci/plugins/credentialsbinding/masking/SecretPatterns.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered line

Line 139 is not covered by tests
}

}

private SecretPatterns() {}
Expand Down

0 comments on commit 58c0fbd

Please sign in to comment.