Fix a typo in the class source warning message.

This commit is contained in:
sk89q 2015-01-19 01:55:56 -08:00
parent 8f65798141
commit bfbcc8dcf8

View File

@ -106,7 +106,7 @@ public void reportMismatches(List<Class<?>> classes) {
builder.append("** the ").append(plugin.getName()).append(" API and thinks that including\n");
builder.append("** ").append(plugin.getName()).append(" is necessary. However, it is not!\n");
builder.append("**\n");
builder.append("** Here are some of files that have been overridden:\n");
builder.append("** Here are some files that have been overridden:\n");
builder.append("** \n");
for (Map.Entry<Class<?>, CodeSource> entry : mismatches.entrySet()) {
CodeSource codeSource = entry.getValue();