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
commit d276c8379e6d84fcb65ccd0051c2f63ee907ab77 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Dec 29 10:21:42 2024 -0500 Add Checkstyle MultipleVariableDeclarations --- src/conf/checkstyle/checkstyle.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/conf/checkstyle/checkstyle.xml b/src/conf/checkstyle/checkstyle.xml index 59aada647..57f79074a 100644 --- a/src/conf/checkstyle/checkstyle.xml +++ b/src/conf/checkstyle/checkstyle.xml @@ -57,8 +57,8 @@ limitations under the License. <!-- <module name="EqualsHashCode" /> --> <module name="ExplicitInitializationCheck" /> <module name="FinalLocalVariable" /> - <module name="IllegalInstantiation" /> <module name="IllegalImport" /> + <module name="IllegalInstantiation" /> <module name="ImportOrder"> <property name="option" value="top" /> <property name="groups" value="java,javax,org" /> @@ -67,6 +67,7 @@ limitations under the License. </module> <module name="LeftCurly" /> <module name="MissingOverride" /> + <module name="MultipleVariableDeclarations" /> <module name="ModifierOrder" /> <module name="NeedBraces" /> <module name="RedundantImport" />