Skip to content

Commit 3db1bfd

Browse files
committed
[Java] Upgrade to Checkstyle 8.24.
1 parent 353036f commit 3db1bfd

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ subprojects {
135135
jar.enabled = true
136136

137137
dependencies {
138-
checkstyle 'com.puppycrawl.tools:checkstyle:8.23'
138+
checkstyle 'com.puppycrawl.tools:checkstyle:8.24'
139139

140140
compile 'org.agrona:agrona:1.0.7'
141141

@@ -144,7 +144,7 @@ subprojects {
144144
testCompile 'junit:junit:4.12'
145145
}
146146

147-
checkstyle.toolVersion = '8.23'
147+
checkstyle.toolVersion = '8.24'
148148

149149
compileJava {
150150
sourceCompatibility = sbeJavaVersion

config/checkstyle/checkstyle.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
<property name="eachLine" value="true"/>
1818
</module>
1919

20+
<module name="LineLength">
21+
<property name="max" value="120"/>
22+
<property name="ignorePattern" value="^[ \t]*\*.*@.*$"/>
23+
</module>
24+
2025
<module name="TreeWalker">
2126
<property name="tabWidth" value="4"/>
2227
<property name="severity" value="error"/>
@@ -59,11 +64,6 @@
5964

6065
<module name="UnusedImports"/>
6166

62-
<module name="LineLength">
63-
<property name="max" value="120"/>
64-
<property name="ignorePattern" value="^[ \t]*\*.*@.*$"/>
65-
</module>
66-
6767
<module name="MethodLength">
6868
<property name="tokens" value="METHOD_DEF"/>
6969
<property name="max" value="100"/>

0 commit comments

Comments
 (0)