mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-22 02:04:31 +00:00
Removed print statements.
This commit is contained in:
parent
3f67e62846
commit
f09ed593d7
1 changed files with 3 additions and 3 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue