Glowman554 / BetterNudel

Unsynchronized lazy initialization of static value detected JAVA-E1053
Bug risk
Critical
1 occurrence in this check
Initialization of instance may be subject to race conditions
27    }
28
29    public static CompilerManager getInstance() {
30        if (instance == null) {31            instance = new CompilerManager();
32        }
33