And actually instantiate the collection *sigh*

This commit is contained in:
Christian 2013-08-17 12:57:15 -04:00
parent 643e3d441a
commit 904e2df1f9
1 changed files with 2 additions and 2 deletions

View File

@ -46,12 +46,12 @@ import cpw.mods.fml.relauncher.IFMLLoadingPlugin.TransformerExclusions;
public class CoreModManager
{
private static String[] rootPlugins = { "cpw.mods.fml.relauncher.FMLCorePlugin" , "net.minecraftforge.classloading.FMLForgePlugin" };
private static List<String> loadedCoremods = new ArrayList<String>();
private static List<String> loadedCoremods = Lists.newArrayList();
private static List<FMLPluginWrapper> loadPlugins;
private static boolean deobfuscatedEnvironment;
private static FMLTweaker tweaker;
private static File mcDir;
private static List<String> reparsedCoremods;
private static List<String> reparsedCoremods = Lists.newArrayList();
private static class FMLPluginWrapper
{