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-rng.git
commit 972c0a4ec2fd56fca820ffe040107f39cce52115 Author: Alex Herbert <aherb...@apache.org> AuthorDate: Fri Jun 6 14:57:47 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 51b420ae..d04a2e84 100644 --- a/src/conf/checkstyle/checkstyle.xml +++ b/src/conf/checkstyle/checkstyle.xml @@ -177,7 +177,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" />