From ac694a17768f014e1c8403e02dec1a2917fe1224 Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Wed, 14 Jun 2017 14:22:27 +0200 Subject: [PATCH] Rimosso println --- .idea/workspace.xml | 41 ++++++------------- .../src/com/texttwist/client/pages/Game.java | 1 - 2 files changed, 12 insertions(+), 30 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 7b9cfac..375c0ca 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,29 +2,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + @@ -926,12 +909,12 @@ - + - @@ -1409,8 +1392,8 @@ - - + + diff --git a/Client/src/com/texttwist/client/pages/Game.java b/Client/src/com/texttwist/client/pages/Game.java index 521ee5d..aba1e6f 100644 --- a/Client/src/com/texttwist/client/pages/Game.java +++ b/Client/src/com/texttwist/client/pages/Game.java @@ -81,7 +81,6 @@ public class Game extends Page { private Point getRandomPosition(){ if(letterSpawningPoint.size()>1) { int index = ThreadLocalRandom.current().nextInt(0, letterSpawningPoint.size() - 1); - System.out.println(index); Point placeholder = letterSpawningPoint.get(index); letterSpawningPoint.remove(index); return placeholder;