cleanup [diff]: remove extra symbols from error message

GitOrigin-RevId: 4b3ad6c0e7f6ae19be145d84880a0fe8b3d2da84
This commit is contained in:
Max Medvedev
2025-11-14 23:26:52 +00:00
committed by intellij-monorepo-bot
parent 8df4d19df3
commit 582cc3638e
@@ -1621,7 +1621,7 @@ public class UnifiedDiffViewer extends ListenerDiffViewerBase implements EditorD
protected void warnMockImplementation(@NotNull String methodName) {
if (ourReportedMockMethods.add(methodName)) {
String message = "Method + '" + methodName + "' is not applicable. Consider using 'editor instanceOf ImaginaryEditor'";
String message = "Method '" + methodName + "' is not applicable. Consider using 'editor instanceOf ImaginaryEditor'";
if (ApplicationManager.getApplication().isInternal() ||
ApplicationManager.getApplication().isUnitTestMode()) {
LOG.error(message);