mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
convert raw literal to string intention (IDEA-189855)
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class A {
|
||||
{
|
||||
String s = "a\n" +
|
||||
" symbol to escape: \"\\\" (slash)\n" +
|
||||
" and something else as well\n" +
|
||||
" ";
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class A {
|
||||
{
|
||||
String s = `a
|
||||
symbol to escape: "\" (slash)
|
||||
and somet<caret>hing else as well
|
||||
`;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user