Issue #16981: Migrate to Java 21 - [noTrailingWhitespace] not aware of string block """
@Test
public void testRequiredTokenIsEmptyIntArray() throws Exception {
final File file = new File(temporaryFolder, "file.java");
try (Writer writer = Files.newBufferedWriter(file.toPath(), StandardCharsets.UTF_8)) {
final String configComment = """
/*
com.puppycrawl.tools.checkstyle.TreeWalkerTest\
$RequiredTokenIsEmptyIntArray
*/
""";
writer.write(configComment);
}
final String[] expected = CommonUtil.EMPTY_STRING_ARRAY;
verifyWithInlineConfigParserTwice(file.getPath(), expected);
}
#16981
Issue #16981:
Migrate to Java 21 - [noTrailingWhitespace] not aware of string block """Migrate to Java 21#16981checkstyle/src/test/java/com/puppycrawl/tools/checkstyle/TreeWalkerTest.java
Line 415 in 35367fc
#16981