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


The following commit(s) were added to refs/heads/master by this push:
     new 4208d318 Switch statements checked using PMD ExhaustiveSwitchHasDefault
4208d318 is described below

commit 4208d31813b1f0a1ef8ca3f58cafa3edbad06cc2
Author: Alex Herbert <[email protected]>
AuthorDate: Fri Jun 6 15:02:39 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 4107e0d9..044549f4 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" />

Reply via email to