Skip to content

Commit

Permalink
Commented out the printing of checksums to stdout.
Browse files Browse the repository at this point in the history
  • Loading branch information
platypusguy authored and Andrew Binstock committed Aug 11, 2020
1 parent 8b89d3d commit fef7dec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/pz/filededupe/DirDeduper.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void updateChecksums( Path p ) {
try {
long chksum = new FileChecksum(p).calculate();
chksumTable.insertFile( p.toString(), chksum );
System.out.println( "checksum: " + chksum + " file: " + p );
// System.out.println( "checksum: " + chksum + " file: " + p );
} catch( IOException e ) {
// error message has already been displayed, so skip this file
}
Expand Down

0 comments on commit fef7dec

Please sign in to comment.