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-collections.git
commit 99ae265fbb247a4a005d5ab68dd5688ea4aa4986 Author: Gary D. Gregory <[email protected]> AuthorDate: Sun Feb 9 18:24:05 2025 -0500 Add Checkstyle SimplifyBooleanExpression --- src/conf/checkstyle.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml index e5603d667..31fe1a4bf 100644 --- a/src/conf/checkstyle.xml +++ b/src/conf/checkstyle.xml @@ -81,9 +81,10 @@ limitations under the License. <module name="NoWhitespaceBeforeCaseDefaultColon"/> <module name="NeedBraces"/> <module name="ParenPad"/> + <module name="RedundantImport" /> <module name="RedundantModifier"/> <module name="RightCurly"/> - <module name="RedundantImport"/> + <module name="SimplifyBooleanExpression" /> <module name="TypecastParenPad" /> <module name="UpperEll" /> <module name="UnusedImports"/>
