From 582cc3638e1d0cc3ab2df4f5fc57ac585b210713 Mon Sep 17 00:00:00 2001 From: Max Medvedev Date: Thu, 13 Nov 2025 14:43:47 +0100 Subject: [PATCH] cleanup [diff]: remove extra symbols from error message GitOrigin-RevId: 4b3ad6c0e7f6ae19be145d84880a0fe8b3d2da84 --- .../com/intellij/diff/tools/fragmented/UnifiedDiffViewer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/diff-impl/src/com/intellij/diff/tools/fragmented/UnifiedDiffViewer.java b/platform/diff-impl/src/com/intellij/diff/tools/fragmented/UnifiedDiffViewer.java index 6b1f6b4d7e73..82da22db62ed 100644 --- a/platform/diff-impl/src/com/intellij/diff/tools/fragmented/UnifiedDiffViewer.java +++ b/platform/diff-impl/src/com/intellij/diff/tools/fragmented/UnifiedDiffViewer.java @@ -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);