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:
Michal Kordas 2015-08-08 12:13:33 +02:00 committed by Roman Ivanov
parent b5825ca34c
commit 8046febbdf
2 changed files with 0 additions and 7 deletions

View File

@ -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

View File

@ -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);