diff options
author | Joffrey Bion <joffrey.bion@amadeus.com> | 2017-09-25 17:19:58 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@amadeus.com> | 2017-09-25 17:19:58 +0200 |
commit | 41330c7a998423b818b147446dd504d514713b88 (patch) | |
tree | 1d6dd174e5a3401b2fceb5d7da55677e5bfc4383 /backend | |
parent | Upgrade to Livedoc 2.0.0 (diff) | |
download | seven-wonders-41330c7a998423b818b147446dd504d514713b88.tar.gz seven-wonders-41330c7a998423b818b147446dd504d514713b88.tar.bz2 seven-wonders-41330c7a998423b818b147446dd504d514713b88.zip |
Allow empty types in checkstyle config
Diffstat (limited to 'backend')
-rw-r--r-- | backend/config/checkstyle/checkstyle.xml | 3 |
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"/> |