mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
12 lines
234 B
Java
12 lines
234 B
Java
// "Replace with regular string literal" "true"
|
|
|
|
class TextBlockMigration {
|
|
|
|
void escapeSequence() {
|
|
String oneLineTextBlock = """
|
|
\u005c"this is one "line"\n\s\
|
|
text <caret>block\134\u005c\\"
|
|
""";
|
|
}
|
|
|
|
} |