mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 12:24:25 +02:00
Removed print statements.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user