Removed print statements.

This commit is contained in:
Winston Li 2015-01-11 11:29:19 +00:00
parent 3f67e62846
commit f09ed593d7

View file

@ -56,9 +56,9 @@ public class FileUtil {
byte[] secondContents = Files.readAllBytes(second);
boolean equals = Arrays.equals(firstContents, secondContents);
if (!equals) {
System.out.println("Not equal: (" + first + ", " + second + ")");
System.out.println(first + ": " + new String(firstContents));
System.out.println(second + ": " + new String(secondContents));
// System.out.println("Not equal: (" + first + ", " + second + ")");
// System.out.println(first + ": " + new String(firstContents));
// System.out.println(second + ": " + new String(secondContents));
}
return equals;
} catch (IOException e) {