When I run it in browser it runs perfectly
When I run it on my pc instead of numbers it displays some strange characters and it is not displaying the bomb icon.
when it runs on pc I also get an error this displayed as some kind of error:
2021-08-26 11:37:50.661 java[7584:930059] CoreText note: Client requested name ".SFNS-Regular", it will get Times-Roman rather than the intended font. All system UI font access should be through proper APIs such as CTFontCreateUIFontForLanguage() or +[NSFont systemFontOfSize:].
even though it works in the browser It's not getting validated.
Can anyone help me please? thanks


package com.codegym.games.minesweeper;
import com.codegym.engine.cell.Game;
public class GameObject {
public int x;
public int y;
public boolean isMine;
public boolean isOpen;
public int countMineNeighbors;
public GameObject(int x, int y, boolean isMine) {
this.x = x;
this.y = y;
this.isMine = isMine;
}
}