Skip to content

Files

Latest commit

 

History

History
23 lines (16 loc) · 598 Bytes

JavadocEmptyVersionTag.md

File metadata and controls

23 lines (16 loc) · 598 Bytes

Pattern: Empty @version tag

Issue: -

Description

Checks for empty @version tags within javadoc. Known limitation: Only the first occurrence of an empty @version within a javadoc comment is found.

Example of violations:

/**
 * Return the calculated count of some stuff.
 *
 * @param startIndex - the starting index
 * @return the count
 * @version                                          // violation
 */

Further Reading