EscapedMetaCharacterInspection: fixed concatenation

GitOrigin-RevId: f6799744d3bdc0304fb5f1a93577bc1c608149b9
This commit is contained in:
Tagir Valeev
2019-12-25 09:04:25 +00:00
committed by intellij-monorepo-bot
parent 94896a3955
commit 45a9019fd9
@@ -64,7 +64,7 @@ public class EscapedMetaCharacterInspection extends LocalInspectionTool {
@NotNull
@Override
public String getName() {
return CommonQuickFixBundle.message("fix.replace.with.x", '[' + myC + ']');
return CommonQuickFixBundle.message("fix.replace.with.x", "[" + myC + ']');
}
@Nls