This commit is contained in:
Ziver Koc 2009-05-07 21:45:11 +00:00
parent c53449208d
commit b7cc0e7fd9

View file

@ -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;
} }