Skip to content

Commit da21c6c

Browse files
committed
Remove old comments
1 parent 527cbc4 commit da21c6c

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/conf/checkstyle/checkstyle.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,18 @@ limitations under the License.
2323
<!-- commons codec customization of default Checkstyle behavior -->
2424
<module name="Checker">
2525
<property name="localeLanguage" value="en" />
26-
<!-- Checks whether files end with a new line. -->
27-
<!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
2826
<module name="NewlineAtEndOfFile" />
29-
<!-- Verify that EVERY source file has the appropriate license -->
3027
<module name="Header">
3128
<property name="headerFile" value="${checkstyle.header.file}" />
3229
</module>
33-
<!-- Checks for Tab characters -->
34-
<!-- See http://checkstyle.sourceforge.net/config_whitespace.html#FileTabCharacter -->
3530
<module name="FileTabCharacter">
3631
<property name="fileExtensions" value="java,xml" />
3732
</module>
38-
<!-- Checks for white space at the end of the line -->
39-
<!-- See http://checkstyle.sourceforge.net/config_regexp.html -->
4033
<module name="RegexpSingleline">
4134
<property name="format" value="\s+$" />
4235
<property name="message" value="Line has trailing spaces." />
4336
<property name="fileExtensions" value="java" />
4437
</module>
45-
<!-- @author tags are deprecated -->
4638
<module name="RegexpSingleline">
4739
<property name="format" value="^\s+\*\s+@author\s" />
4840
<property name="message" value="Deprecated @author tag" />

0 commit comments

Comments
 (0)