auto restart system

master
Alex 2021-12-27 17:16:29 +01:00
parent c26ea7aa24
commit f63d64b6e0
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public class CodeCommand extends Command {
assert serviceInfoSnapshot != null; assert serviceInfoSnapshot != null;
serviceInfoSnapshot.getProperty(BridgeServiceProperty.PLAYERS).ifPresent(players -> { serviceInfoSnapshot.getProperty(BridgeServiceProperty.PLAYERS).ifPresent(players -> {
for (ServicePlayer player : players) { for (ServicePlayer player : players) {
System.out.println("player " + player); System.out.println("player " + player.getName());
} }
}); });