Don't warn about missing tag description on void methods

GitOrigin-RevId: 7125c41e5adfb4a45f96b6f5c9b6db12a9a0da6d
This commit is contained in:
Andrey.Cherkasov
2020-11-20 21:10:26 +03:00
committed by intellij-monorepo-bot
parent ea5b5de628
commit 1a75f19cff
4 changed files with 12 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
class Test {
/**
* <warning descr="Tag 'return' is not allowed here">@return</warning>
*/
public void foo() {}
}