fix typo causing incorrect plugin properties lookup in jars

relates #5261
This commit is contained in:
Costin Leau 2014-03-02 21:31:23 +02:00
parent bf19dc699a
commit 6e955e682b
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public final class PluginUtils {
try {
JarEntry jarEntry = jar.getJarEntry("es-plugin.properties");
if (jarEntry != null) {
found.add(new URL("jar:" + file.toURI().toString() + "!/es.plugin.properties"));
found.add(new URL("jar:" + file.toURI().toString() + "!/es-plugin.properties"));
}
} finally {
IOUtils.closeWhileHandlingException(jar);