}
private static Plugin loadTemporary(@NotNull final URL plugin) throws MalformedURLException, PluginException {
final PluginLoader pluginLoader = PluginLoader.getPluginLoader(plugin, PluginLoader.class.getClassLoader(), false, true);
final Plugin ret = pluginLoader.loadPlugin();
if (ret != null) {
ret.setGloballyEnabled(true);
}
return ret;
}