Merge pull request #2231 from techbrew-mc/patch-1

Initialize sources list
This commit is contained in:
LexManos 2015-12-01 16:04:56 -08:00
commit 4416537776

View file

@ -49,6 +49,7 @@ public class ModClassLoader extends URLClassLoader
public ModClassLoader(ClassLoader parent) {
super(new URL[0], null);
this.mainClassLoader = (LaunchClassLoader)parent;
this.sources = new ArrayList();
}
public void addFile(File modFile) throws MalformedURLException