This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-geometry.git
The following commit(s) were added to refs/heads/master by this push: new 38bbf347 Switch statements checked using PMD ExhaustiveSwitchHasDefault 38bbf347 is described below commit 38bbf347d85c6ce6c3d08102f75dcb33732c5c01 Author: Alex Herbert <aherb...@apache.org> AuthorDate: Fri Jun 6 15:31:36 2025 +0100 Switch statements checked using PMD ExhaustiveSwitchHasDefault --- 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 f4a591b6..00e825c2 100644 --- a/src/conf/checkstyle/checkstyle.xml +++ b/src/conf/checkstyle/checkstyle.xml @@ -173,7 +173,8 @@ <!-- Allowed for algorithm implementations. --> <!-- <module name="InnerAssignment" /> --> <!-- <module name="MagicNumber" /> --> - <module name="MissingSwitchDefault" /> + <!-- Switch statements checked using PMD ExhaustiveSwitchHasDefault. --> + <!-- <module name="MissingSwitchDefault" /> --> <module name="MultipleVariableDeclarations" /> <module name="SimplifyBooleanExpression" /> <module name="SimplifyBooleanReturn" />