Skip to content

Commit 7961255

Browse files
committed
Added checkstyle parenthesis padding check.
Disallow whitespaces after '(' anf before ')'.
1 parent f4889ab commit 7961255

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

checkstyle.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@
2323
<property name="ignoreComments" value="false"/>
2424
</module>
2525

26+
<!-- Disallow package.* imports. -->
2627
<module name="AvoidStarImport"/>
2728

29+
<!-- Disallow whitespaces after '(' and before ')'. -->
30+
<module name="ParenPad"/>
31+
2832
</module>
2933

3034
<!-- Disallow trailing whitespaces/tabs. -->

0 commit comments

Comments
 (0)