Skip to content

Commit

Permalink
add final keyword to checkHashes as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard van Heest committed Aug 6, 2018
1 parent 8869467 commit a56225c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public final void isValid(final Bag bag, final boolean ignoreHiddenFiles) throws
* Check the supplied checksum hashes against the generated checksum hashes
*/
@SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops")
protected void checkHashes(final Manifest manifest) throws CorruptChecksumException, InterruptedException, VerificationException{
protected final void checkHashes(final Manifest manifest) throws CorruptChecksumException, InterruptedException, VerificationException{
final CountDownLatch latch = new CountDownLatch( manifest.getFileToChecksumMap().size());

//TODO maybe return all of these at some point...
Expand Down

0 comments on commit a56225c

Please # to comment.