Добрый день! Подскажите, от чего такое может бытть?
package com.javarush.games.minesweeper;
public class GameObject {
public int x;
public int y;
public boolean isMine;
public int countMineNeighbors;
public GameObject(int x, int y, boolean m){
this.x = x;
this.y = y;
this.isMine = m;
}
}