[java-inspections] JavadocBlankLines: reports blank lines in Javadoc comments

IDEA-281540

GitOrigin-RevId: 2b1937a1e78a82bcdbfbd54b45a509024bcf1f58
This commit is contained in:
Andrey.Cherkasov
2022-02-18 15:27:15 +00:00
committed by intellij-monorepo-bot
parent 0f810a171c
commit b20808f9b0
9 changed files with 181 additions and 0 deletions
@@ -0,0 +1,9 @@
// "Insert <p>" "true"
class Test {
/**
* Doesn't do anything.
* <p>
* Absolutely nothing.
*/
void foo() {}
}