code Cleanup

This commit is contained in:
schrom01 2022-10-17 21:29:16 +02:00
parent 6436ada263
commit 3c85ccb2eb
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ public class HanoiServer implements CommandExecutor {
} else if (n > 1) {
moveDisk(n - 1, from, help, to, result);
result.append("Lege die oberste Scheibe von Turm " + from + " auf Turm " + to + "\n");
moveDisk(n-1, help, to, from, result);
moveDisk(n - 1, help, to, from, result);
}
}