валидатора - на мыло. Я не понимаю, чего ему надо. Объясните кто может. На скрине - болт от валидатора и вот такой createNewApple:
private void createNewApple() {
        do {
            apple = new Apple(getRandomNumber(WIDTH), getRandomNumber(HEIGHT));
        } while (snake.checkCollision(apple));

        apple.draw(this);
    }