This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/master by this push: new 9be881a3 Checkstyle: @author tags are deprecated 9be881a3 is described below commit 9be881a3a6ee58a1521c7db7724cc63f31da356a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Nov 23 08:57:31 2023 -0500 Checkstyle: @author tags are deprecated --- src/conf/checkstyle.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml index a0033239..c089407d 100644 --- a/src/conf/checkstyle.xml +++ b/src/conf/checkstyle.xml @@ -83,5 +83,11 @@ <module name="LineLength"> <property name="max" value="160"/> </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>