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-compress.git
The following commit(s) were added to refs/heads/master by this push: new 5cfb7c672 Sort TreeWalker entries 5cfb7c672 is described below commit 5cfb7c6722a160767c5c72d1111259e9c6367a9f Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri Dec 27 08:02:09 2024 -0500 Sort TreeWalker entries --- src/conf/checkstyle.xml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml index 2d90ee0e8..199e44e3d 100644 --- a/src/conf/checkstyle.xml +++ b/src/conf/checkstyle.xml @@ -38,25 +38,25 @@ limitations under the License. <property name="file" value="checkstyle-suppressions.xml" /> </module> <module name="TreeWalker"> - <module name="FinalLocalVariable" /> - <module name="MissingOverride" /> <module name="AvoidStarImport" /> + <module name="FinalLocalVariable" /> <module name="IllegalImport" /> - <module name="RedundantImport" /> - <module name="UnusedImports" /> - <module name="NeedBraces" /> - <module name="ModifierOrder" /> - <module name="RedundantModifier" /> - <module name="UpperEll" /> - <module name="LeftCurly" /> - <module name="NeedBraces" /> - <module name="RightCurly" /> <module name="ImportOrder"> <property name="option" value="top" /> <property name="groups" value="java,javax,org" /> <property name="ordered" value="true" /> <property name="separated" value="true" /> </module> + <module name="LeftCurly" /> + <module name="MissingOverride" /> + <module name="ModifierOrder" /> + <module name="NeedBraces" /> + <module name="NeedBraces" /> + <module name="RedundantImport" /> + <module name="RedundantModifier" /> + <module name="RightCurly" /> + <module name="UnusedImports" /> + <module name="UpperEll" /> <module name="WhitespaceAfter" /> <module name="WhitespaceAround" /> <module name="WhitespaceAroundCheck" />