From b7cc0e7fd9b61c7b0c2f74457b63fc374bca61e6 Mon Sep 17 00:00:00 2001 From: Ziver Koc Date: Thu, 7 May 2009 21:45:11 +0000 Subject: [PATCH] bug fix --- src/zutil/Hasher.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/zutil/Hasher.java b/src/zutil/Hasher.java index 99b08b41..e450cf59 100644 --- a/src/zutil/Hasher.java +++ b/src/zutil/Hasher.java @@ -33,11 +33,10 @@ public class Hasher { output = bigInt.toString(16); } 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(); - MultiPrintStream.out.println("File Hash: "+output); return output; }