summaryrefslogtreecommitdiff
path: root/backend/config/checkstyle/checkstyle.xml
diff options
context:
space:
mode:
Diffstat (limited to 'backend/config/checkstyle/checkstyle.xml')
-rw-r--r--backend/config/checkstyle/checkstyle.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/config/checkstyle/checkstyle.xml b/backend/config/checkstyle/checkstyle.xml
index 5c511415..b3a6c544 100644
--- a/backend/config/checkstyle/checkstyle.xml
+++ b/backend/config/checkstyle/checkstyle.xml
@@ -67,8 +67,9 @@
</module>
<module name="WhitespaceAround">
- <property name="allowEmptyMethods" value="true"/>
<property name="allowEmptyConstructors" value="true"/>
+ <property name="allowEmptyMethods" value="true"/>
+ <property name="allowEmptyTypes" value="true"/>
</module>
<module name="NoWhitespaceBefore">
<property name="tokens" value="COMMA, SEMI, POST_INC, POST_DEC"/>
bgstack15