mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-09 17:19:47 +03:00
9 lines
274 B
Java
9 lines
274 B
Java
package cpw.mods.fml;
|
||
// FMLSecurityManager запрещает делать System.exit из классов
|
||
// Не входящих в пакеты самого Forge
|
||
public class SafeExitJVM {
|
||
public static void exit(int code)
|
||
{
|
||
System.exit(code);
|
||
}
|
||
}
|