Skip to content

Commit 58bf14a

Browse files
committedAug 28, 2023
whitespace
1 parent c652452 commit 58bf14a

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed
 

‎common.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,3 @@ tasks.withType(JavaExec) { // Java runtime options:
4141
//jvmArgs '-Xms512m', '-Xmx512m' // to enlarge the Java heap
4242
//jvmArgs '-XX:+UseG1GC', '-XX:MaxGCPauseMillis=10'
4343
}
44-

‎config/checkstyle/checkstyle.xml

+5-8
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188
value="Package name ''{0}'' must match pattern ''{1}''."/>
189189
</module>
190190
<module name="TypeName">
191-
<property name="tokens" value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF,
192-
ANNOTATION_DEF, RECORD_DEF"/>
191+
<property name="tokens"
192+
value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF, ANNOTATION_DEF, RECORD_DEF"/>
193193
<message key="name.invalidPattern"
194194
value="Type name ''{0}'' must match pattern ''{1}''."/>
195195
</module>
@@ -346,22 +346,19 @@
346346
<property name="allowMissingReturnTag" value="false"/>
347347
<property name="allowedAnnotations" value=""/>
348348
<property name="tokens"
349-
value="METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF,
350-
COMPACT_CTOR_DEF"/>
349+
value="METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF"/>
351350
</module>
352351
<module name="MissingJavadocMethod">
353352
<property name="scope" value="public"/>
354353
<property name="minLineCount" value="-1"/>
355354
<property name="allowedAnnotations" value=""/>
356355
<property name="tokens"
357-
value="METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF,
358-
COMPACT_CTOR_DEF"/>
356+
value="METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF"/>
359357
</module>
360358
<module name="MissingJavadocType">
361359
<property name="scope" value="protected"/>
362360
<property name="tokens"
363-
value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF,
364-
RECORD_DEF, ANNOTATION_DEF"/>
361+
value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF, RECORD_DEF, ANNOTATION_DEF"/>
365362
<property name="excludeScope" value="nothing"/>
366363
</module>
367364
<module name="JavadocStyle">

0 commit comments

Comments
 (0)
Please sign in to comment.