Minor, fix apostrophes in diagnostic message

This commit is contained in:
Alexander Udalov
2016-10-03 19:10:26 +03:00
parent c1f55e8018
commit 8fe57c8e84
3 changed files with 6 additions and 6 deletions
@@ -110,7 +110,7 @@ public class DefaultErrorMessagesJvm implements DefaultErrorMessages.Extension {
MAP.put(ErrorsJvm.TARGET6_INTERFACE_INHERITANCE,
"Compiling ''{0}'' to JVM 1.8, but its superinterface ''{1}'' was compiled for JVM 1.6. " +
"Method implementation inheritance is restricted for such cases. " +
"Please make explicit overrides (abstract or concrete) for the following non-abstract members of ''{1}’’: {2}",
"Please make explicit overrides (abstract or concrete) for the following non-abstract members of ''{1}'': {2}",
Renderers.NAME, Renderers.NAME, Renderers.TO_STRING);
}