Skip to content

Commit

Permalink
bugfix: too strict checking lambda parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 18, 2024
1 parent c0e4b70 commit a411559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
value="Parameter name ''{0}'' must match pattern ''{1}''."/>
</module>
<module name="LambdaParameterName">
<property name="format" value="^[a-z]{0,9}$"/>
<property name="format" value="^[a-z][a-zA-Z]{0,13}$"/>
<message key="name.invalidPattern"
value="Lambda parameter name ''{0}'' must match pattern ''{1}''."/>
</module>
Expand Down

0 comments on commit a411559

Please sign in to comment.