mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-19 22:43:04 +03:00
[FIX] Немного finalа...
This commit is contained in:
parent
446839ca0a
commit
a2234809b5
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ public class FMLPatcher extends ClassLoader implements Opcodes {
|
||||||
public static final MethodType EXITMH = MethodType.methodType(void.class, int.class);
|
public static final MethodType EXITMH = MethodType.methodType(void.class, int.class);
|
||||||
public static volatile FMLPatcher INSTANCE = null;
|
public static volatile FMLPatcher INSTANCE = null;
|
||||||
public static final String[] PACKAGES = new String[] { "cpw.mods.fml.", "net.minecraftforge.fml.", "cpw.mods." };
|
public static final String[] PACKAGES = new String[] { "cpw.mods.fml.", "net.minecraftforge.fml.", "cpw.mods." };
|
||||||
public static Vector<MethodHandle> MHS = new Vector<>();
|
public static final Vector<MethodHandle> MHS = new Vector<>();
|
||||||
|
|
||||||
public static void apply() {
|
public static void apply() {
|
||||||
INSTANCE = new FMLPatcher(ClassLoader.getSystemClassLoader());
|
INSTANCE = new FMLPatcher(ClassLoader.getSystemClassLoader());
|
||||||
|
|
Loading…
Reference in a new issue