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 da21c6ce Remove old comments
da21c6ce is described below

commit da21c6ce54f093e48481d680647098944158a7cf
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Dec 27 08:25:17 2024 -0500

    Remove old comments
---
 src/conf/checkstyle/checkstyle.xml | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/conf/checkstyle/checkstyle.xml 
b/src/conf/checkstyle/checkstyle.xml
index 899523cf..e4eaf894 100644
--- a/src/conf/checkstyle/checkstyle.xml
+++ b/src/conf/checkstyle/checkstyle.xml
@@ -23,26 +23,18 @@ limitations under the License.
 <!-- commons codec customization of default Checkstyle behavior -->
 <module name="Checker">
   <property name="localeLanguage" value="en" />
-  <!-- Checks whether files end with a new line. -->
-  <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
   <module name="NewlineAtEndOfFile" />
-  <!-- Verify that EVERY source file has the appropriate license -->
   <module name="Header">
     <property name="headerFile" value="${checkstyle.header.file}" />
   </module>
-  <!-- Checks for Tab characters -->
-  <!-- See 
http://checkstyle.sourceforge.net/config_whitespace.html#FileTabCharacter -->
   <module name="FileTabCharacter">
     <property name="fileExtensions" value="java,xml" />
   </module>
-  <!-- Checks for white space at the end of the line -->
-  <!-- See http://checkstyle.sourceforge.net/config_regexp.html -->
   <module name="RegexpSingleline">
     <property name="format" value="\s+$" />
     <property name="message" value="Line has trailing spaces." />
     <property name="fileExtensions" value="java" />
   </module>
-  <!-- @author tags are deprecated -->
   <module name="RegexpSingleline">
     <property name="format" value="^\s+\*\s+@author\s" />
     <property name="message" value="Deprecated @author tag" />

Reply via email to