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-csv.git
The following commit(s) were added to refs/heads/master by this push: new 75b34c70 Checkstyle: @author tags are deprecated 75b34c70 is described below commit 75b34c70264b7359a0c2fa78d71e10ec2ad7bd4e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Nov 23 08:41:50 2023 -0500 Checkstyle: @author tags are deprecated --- src/conf/checkstyle/checkstyle.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/conf/checkstyle/checkstyle.xml b/src/conf/checkstyle/checkstyle.xml index 4ae1fec6..a19f8f53 100644 --- a/src/conf/checkstyle/checkstyle.xml +++ b/src/conf/checkstyle/checkstyle.xml @@ -70,6 +70,12 @@ limitations under the License. <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>