Files
openide/java/java-tests/testData/inspection/inconsistentTextBlockIndent/afterSimple.java
Bas Leijdekkers 9838188e46 Java: rework "Inconsistent whitespace indentation in text block" inspection (IDEA-353100)
GitOrigin-RevId: f2b3042e93e5b9e94fc1b2ee1d7341dd9224d480
2025-04-15 08:34:10 +00:00

10 lines
168 B
Java

// "Indent text block with spaces only" "true"
class Foo {
void test() {
String colors = """
red
green
blue""";
}
}