mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-31708 Debug frame view quoting of character values wrong
This commit is contained in:
@@ -105,7 +105,7 @@ public class PrimitiveRenderer extends NodeRendererImpl {
|
||||
static void appendCharValue(CharValue value, StringBuilder buf) {
|
||||
buf.append('\'');
|
||||
String s = value.toString();
|
||||
StringUtil.escapeStringCharacters(s.length(), s, buf);
|
||||
StringUtil.escapeStringCharacters(s.length(), s, "\'", buf);
|
||||
buf.append('\'');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user