Add missing format specifier to String.format

Change-Id: I32eaf2832c73003d3285643543376b44f1b9b4eb
This commit is contained in:
Matt Baker
2013-12-08 21:35:05 -07:00
parent 8e19090765
commit a9ce1fb528

View File

@@ -508,7 +508,7 @@ public class PluginLoader implements LifecycleListener {
return loadJsPlugin(name, srcPlugin, snapshot);
} else {
throw new InvalidPluginException(String.format(
"Unsupported plugin type: ", srcPlugin.getName()));
"Unsupported plugin type: %s", srcPlugin.getName()));
}
}