Skip to content

Commit

Permalink
Checkstyle: @author tags are deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 23, 2023
1 parent d536765 commit bcf8e0d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/conf/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,12 @@
<property name="ordered" value="true"/>
<property name="separated" value="true"/>
</module>

</module>

<!-- @author tags are deprecated -->
<module name="RegexpSingleline">
<property name="format" value="^\s+\*\s+@author\s" />
<property name="message" value="Deprecated @author tag" />
<property name="fileExtensions" value="java" />
<property name="severity" value="warning" />
</module>
</module>

0 comments on commit bcf8e0d

Please sign in to comment.