Removed useless comments

This commit is contained in:
2026-06-19 22:14:29 +02:00
parent dc9721b1d9
commit 9d554158ab
16 changed files with 29 additions and 72 deletions
@@ -54,7 +54,6 @@ public class ServerLauncher {
actionQueue, gameController, playerList, broadcaster, saveManager);
}
// ── Entry point ───────────────────────────────────────────────────────────
/**
* Initializes all server components, wires them together, restores a saved
@@ -119,7 +118,6 @@ public class ServerLauncher {
new Thread(() -> tcpServer.start()).start();
}
// ── Game loop ─────────────────────────────────────────────────────────────
/**
* Runs the event-processing loop until the thread is interrupted.
@@ -137,7 +135,6 @@ public class ServerLauncher {
}
}
// ── Crash recovery ────────────────────────────────────────────────────────
/**
* Attempts to restore a previously saved game.
@@ -180,7 +177,6 @@ public class ServerLauncher {
System.out.println("Game restored from save (" + game.getNPlayers() + " players).");
}
// ── Network interface selection ───────────────────────────────────────────
/**
* Lists active non-loopback IPv4 network interfaces and prompts the operator