mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
GitOrigin-RevId: 3f14ac5682f2839f0fc69f9db82be3c545d0a149
14 lines
357 B
Java
14 lines
357 B
Java
// "Replace with regular string literal" "true"
|
|
|
|
class TextBlockMigration {
|
|
|
|
String multipleLiterals() {
|
|
return "public static void print(Object o) {\n" +
|
|
" System.out.println(o);\n" +
|
|
"}\n" +
|
|
"\n" +
|
|
"public static void main(String[] args) {\n" +
|
|
" print(\"test\");\n" +
|
|
"}\n";
|
|
}
|
|
} |