Skip to content

Commit

Permalink
Made ImageHasher::hashAllUnsourced actually hash unsourced, instead of
Browse files Browse the repository at this point in the history
attaching the source to the ImageHash.
  • Loading branch information
apaz-cli committed Jan 13, 2020
1 parent 03d54cb commit 7068dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Image-Hashing-Tools/src/pipeline/hasher/ImageHasher.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void hashAllUnsourced() {
pool.execute(() -> {
@SuppressWarnings("unused")
ImageHash hash;
while ((hash = this.hash()) != null) {
while ((hash = this.hashUnsourced()) != null) {
}
});
}
Expand Down

0 comments on commit 7068dd8

Please sign in to comment.