Skip to content

Commit

Permalink
RAT-181 BinaryGuesser should treat *.truststore as binary
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/creadur/rat/trunk@1629333 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
sebbASF committed Oct 3, 2014
1 parent 0caaa46 commit b149e00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Rat 0.12 (SNAPSHOT)
* [RAT-173] - Allow complete skip of RAT plugin with rat.skip property
(thanks to Chris Burroughs)
* [RAT-175] - SourceCodeManagementSystems.hasIgnoreFile() should return boolean
* [RAT-181] - BinaryGuesser should treat *.truststore as binary

Rat 0.11
========
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public static final boolean isBinary(final String name) {
};

private static final String[] KEYSTORE_EXTENSIONS = {
"JKS", "KEYSTORE", "PEM", "CRL"
"JKS", "KEYSTORE", "PEM", "CRL", "TRUSTSTORE"
};

private static final String[] IMAGE_EXTENSIONS = {
Expand Down

0 comments on commit b149e00

Please sign in to comment.