Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/javadocBlankLines/beforeCommentEnd.java
Andrey.Cherkasov 0ab3b77293 [java-inspections] JavadocBlankLines: Reduce the number of false positives
GitOrigin-RevId: 873419b519056a436b0a22a2e88fce7da412901d
2022-02-21 19:37:19 +00:00

13 lines
206 B
Java

// "Insert <p>" "false"
class Test {
/**
* Answer to the ultimate question of life, the universe, and everything
*
* @return The number 42
*<caret>
*/
int answer() {
return 42;
}
}