Skip to content

Commit 9218ce7

Browse files
committed
fix checkstyle config
1 parent 18ab740 commit 9218ce7

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

src/main/config/checkstyle.xml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@
2525
<property name="fileExtensions" value="java"/>
2626
<property name="id" value="header"/>
2727
</module>
28-
28+
<!-- Checks for Size Violations. -->
29+
<!-- See http://checkstyle.sf.net/config_sizes.html -->
30+
<module name="LineLength">
31+
<property name="max" value="130"/>
32+
</module>
2933
<module name="TreeWalker">
3034

3135
<module name="JavadocMethod"/>
@@ -75,12 +79,6 @@
7579
<property name="option" value="bottom"/>
7680
</module>
7781

78-
79-
<!-- Checks for Size Violations. -->
80-
<!-- See http://checkstyle.sf.net/config_sizes.html -->
81-
<module name="LineLength">
82-
<property name="max" value="130"/>
83-
</module>
8482
<module name="MethodLength"/>
8583
<module name="ParameterNumber"/>
8684

0 commit comments

Comments
 (0)