Rimosso println

This commit is contained in:
Lorenzo Iovino 2017-06-14 14:22:27 +02:00
parent ce32f58909
commit ac694a1776
2 changed files with 12 additions and 30 deletions

View file

@ -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;