[FIX] Немного finalа...

This commit is contained in:
Zaxar163 2019-10-16 07:46:52 +02:00
parent 446839ca0a
commit a2234809b5
No known key found for this signature in database
GPG key ID: 1FE4F2E1F053831B

View file

@ -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());