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