Pattern: Possible misuse of single-line Javadoc comment
Issue: -
Checks that a Javadoc block can fit in a single line and doesn't contain at-clauses. Javadoc comment that contains at least one at-clause should be formatted in a few lines.
Default configuration:
<module name="SingleLineJavadoc"/>
To specify a list of ignored at-clauses and make inline at-clauses not ignored:
<module name="SingleLineJavadoc">
<property name="ignoredTags" value="@inheritDoc, @see"/>
<property name="ignoreInlineTags" value="false"/>
</module>