Prevent findbugs false positive.

This commit is contained in:
Luc Maisonobe 2015-12-25 16:54:16 +01:00
parent 6259f3f393
commit 4757bc82f9
1 changed files with 8 additions and 0 deletions

View File

@ -23,6 +23,14 @@
-->
<FindBugsFilter>
<!-- the following field is unused but cannot be suppressed as it is protected -->
<!-- and some user class may require it -->
<Match>
<Class name="org.apache.commons.math3.analysis.integration.BaseAbstractUnivariateIntegrator" />
<Method name="&lt;init>" params="double,double,int,int" returns="void" />
<Bug pattern="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD" />
</Match>
<!-- the following equality tests are part of the reference algorithms -->
<!-- which already know about limited precision of the double numbers -->
<Match>