mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
in Replace concatenation with formatted output" intention" GitOrigin-RevId: b3e57b2cc62bbbcdca3fe357d8a6896837ca3f73
11 lines
179 B
Java
11 lines
179 B
Java
class C {
|
|
|
|
void x(int a, int b) {
|
|
String s = """
|
|
the text \n block
|
|
\\line2
|
|
""" +
|
|
a + b + <caret>//keep me
|
|
" \"to\" be";
|
|
}
|
|
} |