6970717273747576
/** * Loads the modpack.xml and adds it to the modpack array in this class */ public static void loadXml (ArrayList<String> xmlFile) { ModpackLoader loader = new ModpackLoader(xmlFile); loader.start(); }
7677787980818283
} public static void loadXml (String xmlFile) { ArrayList<String> temp = Lists.newArrayList(); temp.add(xmlFile); ModpackLoader loader = new ModpackLoader(temp); loader.start(); }