From 8d33f63b72eeb83309683bfc350dc9e4a5fb2f52 Mon Sep 17 00:00:00 2001 From: Josua Oppermann <josua.oppermann@gmail.com> Date: Thu, 9 Jan 2025 16:43:43 +0100 Subject: [PATCH] Random cleanup --- GameUI.java | 1 - 1 file changed, 1 deletion(-) diff --git a/GameUI.java b/GameUI.java index f852ffc..3faf4ff 100644 --- a/GameUI.java +++ b/GameUI.java @@ -140,7 +140,6 @@ public class GameUI extends Application{ int i = rnd.nextInt(3); String imageSymbols = board.currentPlayer == 0 ? getClass().getResource("/textures/1_" + i + ".png").toExternalForm() : getClass().getResource("/textures/0_" + i + ".png").toExternalForm(); - System.out.println(i); Image image = new Image(""+ imageSymbols); ImageView imageView = new ImageView(image); -- GitLab