PluginServletContext: Add missing space in exception message

Change-Id: I7465e4b8743e583f89992d0493091ab321c1f784
This commit is contained in:
David Pursehouse
2016-07-11 17:42:33 +09:00
parent 9af885e2c5
commit 37b341450e

View File

@@ -70,7 +70,7 @@ class PluginServletContext {
method.getParameterTypes());
} catch (NoSuchMethodException e) {
throw new NoSuchMethodError(String.format(
"%s does not implement%s",
"%s does not implement %s",
PluginServletContext.class,
method.toGenericString()));
}