Update ExtraCore.java

This commit is contained in:
SerpentSpirale 2021-12-06 21:23:49 +01:00
parent 33cde596ff
commit fdc4a86dc9

View File

@ -28,7 +28,7 @@ public final class ExtraCore {
// All public methods will pass through this one
private static ExtraCore getInstance(){
if(extraCoreSingleton == null){
synchronized(Logger.class){
synchronized(ExtraCore.class){
if(extraCoreSingleton == null){
extraCoreSingleton = new ExtraCore();
}