Files
openide/java/java-tests/testData/inspection/textBlockBackwardMigration/afterEscapedSpaces.java
T
2020-01-29 04:45:09 +00:00

10 lines
170 B
Java

// "Replace with regular string literal" "true"
class TextBlockMigration {
void escapeSpaces() {
String block = "text block \n" +
" ";
}
}