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