Fix Javadoc problems. #1555
Fixes `JavaDoc` inspection violations. Description: >This inspection points out the following javadoc comment flaws: - no javadoc where it is required - required tag is missing - invalid or incomplete tag - javadoc description is missing or incomplete
This commit is contained in:
parent
b5825ca34c
commit
8046febbdf
|
|
@ -411,11 +411,6 @@ public enum JavadocTagInfo {
|
|||
* given AST.
|
||||
*
|
||||
* <p>
|
||||
* For example: Given a call to
|
||||
* <code>JavadocTag.RETURN{@link #isValidOn(DetailAST)}</code>.
|
||||
* </p>
|
||||
*
|
||||
* <p>
|
||||
* If passing in a DetailAST representing a non-void METHOD_DEF
|
||||
* <code> true </code> would be returned. If passing in a DetailAST
|
||||
* representing a CLASS_DEF <code> false </code> would be returned because
|
||||
|
|
|
|||
|
|
@ -430,8 +430,6 @@ public abstract class AbstractJavadocCheck extends Check {
|
|||
* @param blockComment
|
||||
* block comment content.
|
||||
* @return parse tree
|
||||
* @throws IOException
|
||||
* errors in ANTLRInputStream
|
||||
*/
|
||||
private ParseTree parseJavadocAsParseTree(String blockComment) {
|
||||
final ANTLRInputStream input = new ANTLRInputStream(blockComment);
|
||||
|
|
|
|||
Loading…
Reference in New Issue