bug fix
This commit is contained in:
parent
c53449208d
commit
b7cc0e7fd9
1 changed files with 1 additions and 2 deletions
|
|
@ -33,11 +33,10 @@ public class Hasher {
|
||||||
output = bigInt.toString(16);
|
output = bigInt.toString(16);
|
||||||
}
|
}
|
||||||
catch(IOException e) {
|
catch(IOException e) {
|
||||||
throw new RuntimeException("Unable to process file for MD5", e);
|
throw new RuntimeException("Unable to process file for "+hashType+" hash", e);
|
||||||
}
|
}
|
||||||
is.close();
|
is.close();
|
||||||
|
|
||||||
MultiPrintStream.out.println("File Hash: "+output);
|
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue