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 0b1a96a commit 347b8de
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/conf/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,12 @@ limitations under the License.
<property name="commentFormat" value="CHECKSTYLE IGNORE (\w+)"/>
<property name="checkFormat" value="$1"/>
</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 347b8de

Please sign in to comment.