mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 17:20:55 +07:00
a12eee9fbc
and use new text block escaping GitOrigin-RevId: cc8eea8aa0c638b967e40b6a6b4b9dea1cfed61d
11 lines
157 B
Java
11 lines
157 B
Java
class C {
|
|
|
|
void x(int a, int b) {
|
|
//keep me
|
|
String s = java.text.MessageFormat.format("""
|
|
the text
|
|
block
|
|
line2
|
|
{0}{1} "to" be""", a, b);
|
|
}
|
|
} |