mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-16 03:59:14 +03:00
15 lines
421 B
Java
15 lines
421 B
Java
package cpw.mods.fml;
|
||
|
||
import ru.gravit.utils.helper.JVMHelper;
|
||
|
||
// FMLSecurityManager запрещает делать System.exit из классов
|
||
// Не входящих в пакеты самого Forge
|
||
public class SafeExitJVMLegacy {
|
||
public static void exit(int code) {
|
||
try {
|
||
JVMHelper.RUNTIME.halt(code);
|
||
} catch (Throwable e) {
|
||
System.exit(code);
|
||
}
|
||
}
|
||
}
|