Main class

This commit is contained in:
Filip Izydorczyk 2020-07-27 16:10:05 +02:00
parent 72698106a5
commit 173c742079

View File

@ -38,9 +38,9 @@ public class App {
} }
public App getInstance() { public App getInstance() {
if (this.instance == null) { if (App.instance == null) {
this.instance = new App(); App.instance = new App();
} }
return this.instance; return App.instance;
} }
} }