Skip to content

Commit

Permalink
checkstyle.xml: re-order modules
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 31, 2023
1 parent 0df68e9 commit 7dd1f72
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,11 @@
value="Local variable name ''{0}'' must match pattern ''{1}''."/>
</module>
<module name="LocalFinalVariableName"/>
<module name="MethodName">
<property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
<message key="name.invalidPattern"
value="Method name ''{0}'' must match pattern ''{1}''."/>
</module>
<module name="PatternVariableName">
<property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
<message key="name.invalidPattern"
Expand Down Expand Up @@ -361,11 +366,6 @@
<property name="scope" value="protected"/>
</module>

<module name="MethodName">
<property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
<message key="name.invalidPattern"
value="Method name ''{0}'' must match pattern ''{1}''."/>
</module>
<module name="SingleLineJavadoc"/>
<module name="EmptyCatchBlock">
<property name="exceptionVariableName" value="expected"/>
Expand Down

0 comments on commit 7dd1f72

Please sign in to comment.