This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-scxml.git
commit 615ea7aa791d5a56ca8ac6038f08d7d4b91bbfc6 Author: Gary Gregory <[email protected]> AuthorDate: Fri Oct 27 11:03:17 2023 -0400 Fix Checkstyle configuration --- checkstyle.xml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/checkstyle.xml b/checkstyle.xml index 3dfb035..f13238e 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -98,10 +98,13 @@ <property name="message" value="Line has trailing spaces." /> </module> + <module name="LineLength"> + <property name="max" value="160" /> + </module> + <module name="TreeWalker"> <module name="ExplicitInitializationCheck" /> - <property name="cacheFile" value="${checkstyle.cache.file}" /> <!-- Checks for Javadoc comments. --> <!-- See http://checkstyle.sf.net/config_javadoc.html --> @@ -131,9 +134,6 @@ <!-- Checks for Size Violations. --> <!-- See http://checkstyle.sf.net/config_sizes.html --> - <module name="LineLength"> - <property name="max" value="160" /> - </module> <module name="MethodLength" /> <!--module name="ParameterNumber"/ --> @@ -174,7 +174,6 @@ <module name="InnerAssignment" /> <module name="MagicNumber" /> <module name="MissingSwitchDefault" /> - <module name="RedundantThrows" /> <module name="SimplifyBooleanExpression" /> <module name="SimplifyBooleanReturn" />
