Prevent findbugs false positive.
This commit is contained in:
parent
6259f3f393
commit
4757bc82f9
|
@ -23,6 +23,14 @@
|
||||||
-->
|
-->
|
||||||
<FindBugsFilter>
|
<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="<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 -->
|
<!-- the following equality tests are part of the reference algorithms -->
|
||||||
<!-- which already know about limited precision of the double numbers -->
|
<!-- which already know about limited precision of the double numbers -->
|
||||||
<Match>
|
<Match>
|
||||||
|
|
Loading…
Reference in New Issue