This is an automated email from the ASF dual-hosted git repository.
vorburger pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
The following commit(s) were added to refs/heads/develop by this push:
new d8f87ba FINERACT-821 Added MultipleVariableDeclarations Checkstyle
d8f87ba is described below
commit d8f87ba265eb1c9ff333d1c5508a170d56014a8d
Author: thesmallstar <[email protected]>
AuthorDate: Sat Jun 20 03:01:53 2020 +0530
FINERACT-821 Added MultipleVariableDeclarations Checkstyle
---
fineract-provider/config/checkstyle/checkstyle.xml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/fineract-provider/config/checkstyle/checkstyle.xml
b/fineract-provider/config/checkstyle/checkstyle.xml
index 4b60508..01ad7ef 100644
--- a/fineract-provider/config/checkstyle/checkstyle.xml
+++ b/fineract-provider/config/checkstyle/checkstyle.xml
@@ -115,6 +115,7 @@
<!-- No PACKAGE_DEF token, as we like our license header to be
glue to "package" statement, to save 1 line screen space -->
<property name="tokens" value="IMPORT, CLASS_DEF, INTERFACE_DEF,
ENUM_DEF, STATIC_INIT, INSTANCE_INIT, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
</module>
+ <module name="MultipleVariableDeclarations"/>
<module name="PackageName">
<property name="format" value="^[a-z]+(\.[a-z][a-z0-9_]*)*$"/>
<message key="name.invalidPattern"
@@ -200,7 +201,7 @@
- <module name="MultipleVariableDeclarations"/>
+
<module name="MissingSwitchDefault"/>