SPIGOT-3721: Plugins without manifests no longer load

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2017-12-28 20:29:58 +11:00
parent 1e918108e3
commit a36a08cdd0

View file

@ -44,7 +44,7 @@ final class PluginClassLoader extends URLClassLoader {
this.description = description;
this.dataFolder = dataFolder;
this.file = file;
this.jar = new JarFile(file, true);
this.jar = new JarFile(file);
this.manifest = jar.getManifest();
this.url = file.toURI().toURL();
@ -104,7 +104,11 @@ final class PluginClassLoader extends URLClassLoader {
if (dot != -1) {
String pkgName = name.substring(0, dot);
if (getPackage(pkgName) == null) {
definePackage(pkgName, manifest, url);
if (manifest != null) {
definePackage(pkgName, manifest, url);
} else {
definePackage(pkgName, null, null, null, null, null, null, null);
}
}
}