This is an automated email from the ASF dual-hosted git repository. erans pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-math.git
commit 26708f4b8d756385ede1d331e92246d835a1cb19 Author: Gilles Sadowski <gillese...@gmail.com> AuthorDate: Sat Oct 16 10:33:39 2021 +0200 Adapt configuration to class being moved to another package. --- src/main/resources/spotbugs/spotbugs-exclude-filter.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/spotbugs/spotbugs-exclude-filter.xml b/src/main/resources/spotbugs/spotbugs-exclude-filter.xml index 4ee71d2..0a9f57f 100644 --- a/src/main/resources/spotbugs/spotbugs-exclude-filter.xml +++ b/src/main/resources/spotbugs/spotbugs-exclude-filter.xml @@ -48,13 +48,13 @@ </Match> <Match> <!-- The constant is inlined resulting in a dead-local-store error --> - <Class name="org.apache.commons.math4.legacy.core.jdkmath.AccurateMath"/> + <Class name="org.apache.commons.math4.core.jdkmath.AccurateMath"/> <Method name="atan"/> <BugPattern name="DLS_DEAD_LOCAL_STORE"/> </Match> <Match> <!-- The constant is intentionally close to but not exactly pi/2 --> - <Class name="org.apache.commons.math4.legacy.core.jdkmath.AccurateMath$CodyWaite"/> + <Class name="org.apache.commons.math4.core.jdkmath.AccurateMath$CodyWaite"/> <BugPattern name="CNT_ROUGH_CONSTANT_VALUE"/> </Match>