JarScanner: Fix minor typo in log message

Change-Id: I3d271ac65fb4f376a8cbe557e2dd7f102f5de785
This commit is contained in:
David Pursehouse
2015-10-21 09:25:55 +00:00
parent c3e4e0de0f
commit 44239b8f2e

View File

@@ -102,7 +102,7 @@ public class JarScanner implements PluginContentScanner {
throw new InvalidPluginException("Cannot auto-register", err); throw new InvalidPluginException("Cannot auto-register", err);
} catch (RuntimeException err) { } catch (RuntimeException err) {
PluginLoader.log.warn(String.format( PluginLoader.log.warn(String.format(
"Plugin %s has invaild class file %s inside of %s", pluginName, "Plugin %s has invalid class file %s inside of %s", pluginName,
entry.getName(), jarFile.getName()), err); entry.getName(), jarFile.getName()), err);
continue; continue;
} }