This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/trunk by this push:
new 00ec6c6 Improvement: Upgrade Gradle and Groovy
00ec6c6 is described below
commit 00ec6c677b7948178e1232b3d463ce49b69d62eb
Author: Jacques Le Roux <
[hidden email]>
AuthorDate: Wed May 6 15:08:57 2020 +0200
Improvement: Upgrade Gradle and Groovy
(OFBIZ-11661)
Fixes a known issue with config/checkstyle/checkstyle.xml:
TreeWalker is not allowed as a parent of LineLength Please review 'Parent Module'
section for this Check in web documentation if Check is standard
---
config/checkstyle/checkstyle.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml
index 0788c24..527945a 100644
--- a/config/checkstyle/checkstyle.xml
+++ b/config/checkstyle/checkstyle.xml
@@ -40,6 +40,9 @@ under the License.
<property name="maximum" value="0"/>
<property name="message" value="Line has trailing spaces."/>
</module>
+ <module name="LineLength">
+ <property name="max" value="120"/>
+ </module>
<module name="TreeWalker">
<!-- Naming conventions -->
@@ -62,9 +65,6 @@ under the License.
</module>
<!-- Checks for Size Violations -->
- <module name="LineLength">
- <property name="max" value="120"/>
- </module>
<module name="MethodLength"/>
<module name="ParameterNumber"/>