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-fileupload.git

commit aa2ccc8db6568fa94f03cc23f3ddfc5f9c6b1254
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Oct 9 10:17:52 2023 -0400

    Format XML
---
 src/checkstyle/fileupload_checks.xml | 298 +++++++++++++++++------------------
 1 file changed, 147 insertions(+), 151 deletions(-)

diff --git a/src/checkstyle/fileupload_checks.xml 
b/src/checkstyle/fileupload_checks.xml
index bd7e4eeb..f30e96ab 100644
--- a/src/checkstyle/fileupload_checks.xml
+++ b/src/checkstyle/fileupload_checks.xml
@@ -15,11 +15,9 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-
 <!DOCTYPE module PUBLIC
     "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
     "https://checkstyle.org/dtds/configuration_1_3.dtd";>
-
 <!--
   Checkstyle configuration for Commons FileUpload. FileUpload uses the Sun
   coding guidelines, so this file is almost the same as Maven's sun_checks.xml
@@ -63,166 +61,164 @@
   Finally, it is worth reading the documentation.
 
 -->
-
 <module name="Checker">
 
-    <!-- Checks whether files end with a new line.                        -->
-    <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
-    <module name="NewlineAtEndOfFile"/>
+  <!-- Checks whether files end with a new line. -->
+  <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
+  <module name="NewlineAtEndOfFile" />
 
-    <!-- Checks that property files contain the same keys.         -->
-    <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
-    <module name="Translation"/>
+  <!-- Checks that property files contain the same keys. -->
+  <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
+  <module name="Translation" />
 
-    <!-- Checks for Size Violations.                    -->
-    <!-- See http://checkstyle.sf.net/config_sizes.html -->
-    <module name="FileLength"/>
+  <!-- Checks for Size Violations. -->
+  <!-- See http://checkstyle.sf.net/config_sizes.html -->
+  <module name="FileLength" />
 
-    <!-- No tabs allowed! -->
-    <module name="FileTabCharacter"/>
+  <!-- No tabs allowed! -->
+  <module name="FileTabCharacter" />
 
-    <!-- Require package Javadoc -->
-    <module name="JavadocPackage"/>
+  <!-- Require package Javadoc -->
+  <module name="JavadocPackage" />
 
-    <property name="cacheFile" value="${checkstyle.cache.file}"/>
+  <property name="cacheFile" value="${checkstyle.cache.file}" />
 
-    <!-- Begin Custom for FileUpload -->
-    <module name="LineLength">
-        <property name="max" value="160"/>
-        <property name="ignorePattern" value="^ \* @version .*$"/>
+  <!-- Begin Custom for FileUpload -->
+  <module name="LineLength">
+    <property name="max" value="160" />
+    <property name="ignorePattern" value="^ \* @version .*$" />
+  </module>
+
+  <module name="TreeWalker">
+
+    <module name="FinalLocalVariable">
+      <property name="tokens" value="VARIABLE_DEF,PARAMETER_DEF" />
+      <property name="validateEnhancedForLoopVariable" value="true" />
     </module>
 
-    <module name="TreeWalker">
-
-        <module name="FinalLocalVariable">
-            <property name="tokens" value="VARIABLE_DEF,PARAMETER_DEF"/>
-            <property name="validateEnhancedForLoopVariable" value="true"/>
-        </module>
-
-        <!-- Allow comments to suppress checks -->
-        <module name="SuppressionCommentFilter"/>
-
-        <module name="SuppressWithNearbyCommentFilter">
-          <property name="commentFormat" value="CHECKSTYLE IGNORE (\w+) FOR 
NEXT (\d+) LINES?"/>
-          <property name="checkFormat" value="$1"/>
-          <property name="influenceFormat" value="$2"/>
-        </module>
-
-        <!-- Allow comments to suppress checks
-        <module name="FileContentsHolder"/>-->
-
-        <!-- Checks for Javadoc comments.                     -->
-        <!-- See http://checkstyle.sf.net/config_javadoc.html -->
-        <module name="JavadocMethod">
-          <property name="accessModifiers" value="protected"/>
-        </module>
-        <module name="JavadocType"/>
-        <module name="JavadocVariable"/>
-        <module name="JavadocStyle"/>
-
-
-        <!-- Checks for Naming Conventions.                  -->
-        <!-- See http://checkstyle.sf.net/config_naming.html -->
-        <module name="ConstantName"/>
-        <module name="LocalFinalVariableName"/>
-        <module name="LocalVariableName"/>
-        <module name="MemberName"/>
-        <module name="MethodName"/>
-        <module name="PackageName"/>
-        <module name="ParameterName"/>
-        <module name="StaticVariableName"/>
-        <module name="TypeName"/>
-
-        <!-- Checks for Headers                              -->
-        <!-- See http://checkstyle.sf.net/config_header.html -->
-        <!-- <module name="Header">                          -->
-            <!-- The follow property value demonstrates the ability     -->
-            <!-- to have access to ANT properties. In this case it uses -->
-            <!-- the ${basedir} property to allow Checkstyle to be run  -->
-            <!-- from any directory within a project. See property      -->
-            <!-- expansion,                                             -->
-            <!-- http://checkstyle.sf.net/config.html#properties        -->
-            <!-- <property                                              -->
-            <!--     name="headerFile"                                  -->
-            <!--     value="${basedir}/java.header"/>                   -->
-            <!-- <property name="headerFile" 
value="${checkstyle.header.file}"/> -->
-        <!-- </module> -->
-
-        <!-- Checks for imports                              -->
-        <!-- See http://checkstyle.sf.net/config_import.html -->
-        <module name="AvoidStarImport"/>
-        <module name="IllegalImport"/> <!-- defaults to sun.* packages -->
-        <module name="RedundantImport"/>
-        <module name="UnusedImports"/>
-
-        <!-- End Custom for FileUpload -->
-        <module name="MethodLength"/>
-        <module name="ParameterNumber">
-          <property name="max" value="8"/>
-          <property name="tokens" value="CTOR_DEF"/>
-        </module>
-
-        <!-- Checks for whitespace                               -->
-        <!-- See http://checkstyle.sf.net/config_whitespace.html -->
-        <module name="EmptyForIteratorPad"/>
-        <module name="NoWhitespaceBefore"/>
-        <module name="OperatorWrap"/>
-        <module name="ParenPad"/>
-        <module name="TypecastParenPad"/>
-        <module name="WhitespaceAfter"/>
-        <module name="WhitespaceAround"/>
-
-        <module name="GenericWhitespace"/>
-
-        <!-- Modifier Checks                                    -->
-        <!-- See http://checkstyle.sf.net/config_modifiers.html -->
-        <module name="ModifierOrder"/>
-        <module name="RedundantModifier"/>
-
-        <!-- Checks for blocks. You know, those {}'s         -->
-        <!-- See http://checkstyle.sf.net/config_blocks.html -->
-        <module name="AvoidNestedBlocks"/>
-        <!-- Begin Custom for FileUpload -->
-        <module name="EmptyBlock">
-          <property name="option" value="text"/>
-        </module>
-        <!-- End Custom for FileUpload -->
-        <module name="LeftCurly"/>
-        <module name="NeedBraces"/>
-        <module name="RightCurly"/>
-
-
-        <!-- Checks for common coding problems               -->
-        <!-- See http://checkstyle.sf.net/config_coding.html -->
-        <module name="EmptyStatement"/>
-        <module name="EqualsHashCode"/>
-        <!-- Disabled for FileUpload: module name="HiddenField"/ -->
-        <module name="IllegalInstantiation"/>
-        <module name="InnerAssignment"/>
-        <module name="MagicNumber"/>
-        <module name="MissingSwitchDefault"/>
-        <module name="SimplifyBooleanExpression"/>
-        <module name="SimplifyBooleanReturn"/>
-
-        <!-- Checks for class design                         -->
-        <!-- See http://checkstyle.sf.net/config_design.html -->
-        <!-- Disabled for FileUpload: module name="DesignForExtension"/ -->
-        <module name="FinalClass"/>
-        <module name="HideUtilityClassConstructor"/>
-        <module name="InterfaceIsType"/>
-        <module name="VisibilityModifier"/>
-
-        <!-- Miscellaneous other checks.                   -->
-        <!-- See http://checkstyle.sf.net/config_misc.html -->
-        <module name="ArrayTypeStyle"/>
-        <!-- Disabled for FileUpload: module name="FinalParameters"/ -->
-        <module name="RegexpSinglelineJava">
-            <property name="format" value="\s+$"/>
-            <property name="message" value="Line has trailing spaces."/>
-        </module>
-        <module name="TodoComment"/>
-        <module name="UpperEll"/>
+    <!-- Allow comments to suppress checks -->
+    <module name="SuppressionCommentFilter" />
 
+    <module name="SuppressWithNearbyCommentFilter">
+      <property name="commentFormat" value="CHECKSTYLE IGNORE (\w+) FOR NEXT 
(\d+) LINES?" />
+      <property name="checkFormat" value="$1" />
+      <property name="influenceFormat" value="$2" />
     </module>
 
+    <!-- Allow comments to suppress checks <module name="FileContentsHolder"/> 
-->
+
+    <!-- Checks for Javadoc comments. -->
+    <!-- See http://checkstyle.sf.net/config_javadoc.html -->
+    <module name="JavadocMethod">
+      <property name="accessModifiers" value="protected" />
+    </module>
+    <module name="JavadocType" />
+    <module name="JavadocVariable" />
+    <module name="JavadocStyle" />
+
+
+    <!-- Checks for Naming Conventions. -->
+    <!-- See http://checkstyle.sf.net/config_naming.html -->
+    <module name="ConstantName" />
+    <module name="LocalFinalVariableName" />
+    <module name="LocalVariableName" />
+    <module name="MemberName" />
+    <module name="MethodName" />
+    <module name="PackageName" />
+    <module name="ParameterName" />
+    <module name="StaticVariableName" />
+    <module name="TypeName" />
+
+    <!-- Checks for Headers -->
+    <!-- See http://checkstyle.sf.net/config_header.html -->
+    <!-- <module name="Header"> -->
+    <!-- The follow property value demonstrates the ability -->
+    <!-- to have access to ANT properties. In this case it uses -->
+    <!-- the ${basedir} property to allow Checkstyle to be run -->
+    <!-- from any directory within a project. See property -->
+    <!-- expansion, -->
+    <!-- http://checkstyle.sf.net/config.html#properties -->
+    <!-- <property -->
+    <!-- name="headerFile" -->
+    <!-- value="${basedir}/java.header"/> -->
+    <!-- <property name="headerFile" value="${checkstyle.header.file}"/> -->
+    <!-- </module> -->
+
+    <!-- Checks for imports -->
+    <!-- See http://checkstyle.sf.net/config_import.html -->
+    <module name="AvoidStarImport" />
+    <module name="IllegalImport" /> <!-- defaults to sun.* packages -->
+    <module name="RedundantImport" />
+    <module name="UnusedImports" />
+
+    <!-- End Custom for FileUpload -->
+    <module name="MethodLength" />
+    <module name="ParameterNumber">
+      <property name="max" value="8" />
+      <property name="tokens" value="CTOR_DEF" />
+    </module>
+
+    <!-- Checks for whitespace -->
+    <!-- See http://checkstyle.sf.net/config_whitespace.html -->
+    <module name="EmptyForIteratorPad" />
+    <module name="NoWhitespaceBefore" />
+    <module name="OperatorWrap" />
+    <module name="ParenPad" />
+    <module name="TypecastParenPad" />
+    <module name="WhitespaceAfter" />
+    <module name="WhitespaceAround" />
+
+    <module name="GenericWhitespace" />
+
+    <!-- Modifier Checks -->
+    <!-- See http://checkstyle.sf.net/config_modifiers.html -->
+    <module name="ModifierOrder" />
+    <module name="RedundantModifier" />
+
+    <!-- Checks for blocks. You know, those {}'s -->
+    <!-- See http://checkstyle.sf.net/config_blocks.html -->
+    <module name="AvoidNestedBlocks" />
+    <!-- Begin Custom for FileUpload -->
+    <module name="EmptyBlock">
+      <property name="option" value="text" />
+    </module>
+    <!-- End Custom for FileUpload -->
+    <module name="LeftCurly" />
+    <module name="NeedBraces" />
+    <module name="RightCurly" />
+
+
+    <!-- Checks for common coding problems -->
+    <!-- See http://checkstyle.sf.net/config_coding.html -->
+    <module name="EmptyStatement" />
+    <module name="EqualsHashCode" />
+    <!-- Disabled for FileUpload: module name="HiddenField"/ -->
+    <module name="IllegalInstantiation" />
+    <module name="InnerAssignment" />
+    <module name="MagicNumber" />
+    <module name="MissingSwitchDefault" />
+    <module name="SimplifyBooleanExpression" />
+    <module name="SimplifyBooleanReturn" />
+
+    <!-- Checks for class design -->
+    <!-- See http://checkstyle.sf.net/config_design.html -->
+    <!-- Disabled for FileUpload: module name="DesignForExtension"/ -->
+    <module name="FinalClass" />
+    <module name="HideUtilityClassConstructor" />
+    <module name="InterfaceIsType" />
+    <module name="VisibilityModifier" />
+
+    <!-- Miscellaneous other checks. -->
+    <!-- See http://checkstyle.sf.net/config_misc.html -->
+    <module name="ArrayTypeStyle" />
+    <!-- Disabled for FileUpload: module name="FinalParameters"/ -->
+    <module name="RegexpSinglelineJava">
+      <property name="format" value="\s+$" />
+      <property name="message" value="Line has trailing spaces." />
+    </module>
+    <module name="TodoComment" />
+    <module name="UpperEll" />
+
+  </module>
+
 </module>

Reply via email to