mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
16 lines
341 B
Java
16 lines
341 B
Java
// "Replace with regular string literal" "true"
|
|
|
|
class TextBlockMigration {
|
|
|
|
String multipleLiterals() {
|
|
return """<caret>
|
|
public static void print(Object o) {
|
|
System.out.println(o);
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
print("test");
|
|
}
|
|
""";
|
|
}
|
|
} |