This commit is contained in:
Luca Conte 2022-12-01 18:28:13 +01:00
parent f929623e0b
commit 5b47447117
2 changed files with 4 additions and 1 deletions

Binary file not shown.

View File

@ -29,7 +29,10 @@ public class Diff {
String line2 = nextLine(scan2);
if (!line1.equals(line2)) {
foundDiff = true;
if (!foundDiff) {
System.out.println("Unterschiede gefunden:");
foundDiff = true;
}
System.out.println("Zeile " + zeile + ":");
System.out.println("< " + line1);
System.out.println("> " + line2);