Skip to content

Commit 8942c4a

Browse files
committed
Remove extra whitespace
1 parent 01edad7 commit 8942c4a

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/conf/checkstyle.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,42 +23,35 @@ limitations under the License.
2323
<!-- commons codec customization of default Checkstyle behavior -->
2424
<module name="Checker">
2525
<property name="localeLanguage" value="en" />
26-
2726
<module name="SuppressionFilter">
2827
<property name="file" value="src/conf/checkstyle-suppressions.xml"/>
2928
</module>
30-
3129
<!-- Checks whether files end with a new line. -->
3230
<!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
3331
<module name="NewlineAtEndOfFile" />
34-
3532
<!-- Verify that EVERY source file has the appropriate license -->
3633
<module name="Header">
3734
<property name="headerFile" value="${checkstyle.header.file}" />
3835
</module>
39-
4036
<!-- Checks for Tab characters -->
4137
<!-- See http://checkstyle.sourceforge.net/config_whitespace.html#FileTabCharacter -->
4238
<module name="FileTabCharacter">
4339
<property name="fileExtensions" value="java" />
4440
</module>
45-
4641
<!-- Checks for white space at the end of the line -->
4742
<!-- See http://checkstyle.sourceforge.net/config_regexp.html -->
4843
<module name="RegexpSingleline">
4944
<property name="format" value="\s+$" />
5045
<property name="message" value="Line has trailing spaces." />
5146
<property name="fileExtensions" value="java" />
5247
</module>
53-
5448
<!-- @author tags are deprecated -->
5549
<module name="RegexpSingleline">
5650
<property name="format" value="^\s+\*\s+@author\s" />
5751
<property name="message" value="Deprecated @author tag" />
5852
<property name="fileExtensions" value="java" />
5953
<property name="severity" value="warning" />
6054
</module>
61-
6255
<module name="TreeWalker">
6356
<module name="WhitespaceAfter" />
6457
<module name="WhitespaceAround" />

0 commit comments

Comments
 (0)