mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-22 18:55:17 +01:00
Used try-with-resources to ensure jar is closed.
This commit is contained in:
parent
28b88763e6
commit
56ff9f62e4
@ -101,53 +101,52 @@ public final class AddonsManager {
|
|||||||
if (!f.getName().endsWith(".jar")) {
|
if (!f.getName().endsWith(".jar")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
JarFile jar = new JarFile(f);
|
try (JarFile jar = new JarFile(f)) {
|
||||||
|
|
||||||
// Obtain the addon.yml file
|
// Obtain the addon.yml file
|
||||||
JarEntry entry = jar.getJarEntry("addon.yml");
|
JarEntry entry = jar.getJarEntry("addon.yml");
|
||||||
if (entry == null) {
|
if (entry == null) {
|
||||||
jar.close();
|
jar.close();
|
||||||
throw new InvalidAddonFormatException("Addon doesn't contains description file");
|
throw new InvalidAddonFormatException("Addon doesn't contains description file");
|
||||||
|
|
||||||
|
}
|
||||||
|
// Open a reader to the jar
|
||||||
|
BufferedReader reader = new BufferedReader(new InputStreamReader(jar.getInputStream(entry)));
|
||||||
|
// Grab the description in the addon.yml file
|
||||||
|
Map<String, String> data = this.data(reader);
|
||||||
|
|
||||||
|
// Load the addon
|
||||||
|
AddonClassLoader loader = new AddonClassLoader(this, data, f, reader, this.getClass().getClassLoader());
|
||||||
|
// Add to the list of loaders
|
||||||
|
this.loader.add(loader);
|
||||||
|
|
||||||
|
// Get the addon itself
|
||||||
|
addon = loader.addon;
|
||||||
|
// Initialize some settings
|
||||||
|
addon.setDataFolder(new File(f.getParent(), addon.getDescription().getName()));
|
||||||
|
addon.setAddonFile(f);
|
||||||
|
|
||||||
|
File localeDir = new File(plugin.getDataFolder(), LOCALE_FOLDER + File.separator + addon.getDescription().getName());
|
||||||
|
// Obtain any locale files and save them
|
||||||
|
for (String localeFile : listJarYamlFiles(jar, "locales")) {
|
||||||
|
//plugin.getLogger().info("DEBUG: saving " + localeFile + " from jar");
|
||||||
|
addon.saveResource(localeFile, localeDir, false, true);
|
||||||
|
}
|
||||||
|
plugin.getLocalesManager().loadLocales(addon.getDescription().getName());
|
||||||
|
|
||||||
|
// Fire the load event
|
||||||
|
Bukkit.getPluginManager().callEvent(AddonEvent.builder().addon(addon).reason(AddonEvent.Reason.LOAD).build());
|
||||||
|
|
||||||
|
// Add it to the list of addons
|
||||||
|
this.addons.add(addon);
|
||||||
|
|
||||||
|
// Run the onLoad() method
|
||||||
|
addon.onLoad();
|
||||||
|
|
||||||
|
// Inform the console
|
||||||
|
plugin.getLogger().info("Loading BSkyBlock addon " + addon.getDescription().getName() + "...");
|
||||||
}
|
}
|
||||||
// Open a reader to the jar
|
|
||||||
BufferedReader reader = new BufferedReader(new InputStreamReader(jar.getInputStream(entry)));
|
|
||||||
// Grab the description in the addon.yml file
|
|
||||||
Map<String, String> data = this.data(reader);
|
|
||||||
|
|
||||||
// Load the addon
|
|
||||||
AddonClassLoader loader = new AddonClassLoader(this, data, f, reader, this.getClass().getClassLoader());
|
|
||||||
// Add to the list of loaders
|
|
||||||
this.loader.add(loader);
|
|
||||||
|
|
||||||
// Get the addon itself
|
|
||||||
addon = loader.addon;
|
|
||||||
// Initialize some settings
|
|
||||||
addon.setDataFolder(new File(f.getParent(), addon.getDescription().getName()));
|
|
||||||
addon.setAddonFile(f);
|
|
||||||
|
|
||||||
File localeDir = new File(plugin.getDataFolder(), LOCALE_FOLDER + File.separator + addon.getDescription().getName());
|
|
||||||
// Obtain any locale files and save them
|
|
||||||
for (String localeFile : listJarYamlFiles(jar, "locales")) {
|
|
||||||
//plugin.getLogger().info("DEBUG: saving " + localeFile + " from jar");
|
|
||||||
addon.saveResource(localeFile, localeDir, false, true);
|
|
||||||
}
|
|
||||||
plugin.getLocalesManager().loadLocales(addon.getDescription().getName());
|
|
||||||
|
|
||||||
// Fire the load event
|
|
||||||
Bukkit.getPluginManager().callEvent(AddonEvent.builder().addon(addon).reason(AddonEvent.Reason.LOAD).build());
|
|
||||||
|
|
||||||
// Add it to the list of addons
|
|
||||||
this.addons.add(addon);
|
|
||||||
|
|
||||||
// Run the onLoad() method
|
|
||||||
addon.onLoad();
|
|
||||||
|
|
||||||
// Inform the console
|
|
||||||
plugin.getLogger().info("Loading BSkyBlock addon " + addon.getDescription().getName() + "...");
|
|
||||||
|
|
||||||
// Close the jar
|
|
||||||
jar.close();
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
plugin.getLogger().info(f.getName() + "is not a jarfile, ignoring...");
|
plugin.getLogger().info(f.getName() + "is not a jarfile, ignoring...");
|
||||||
|
Loading…
Reference in New Issue
Block a user