updated findbugs plugin version
fixed exclusion rule for some false positives git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@731746 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e7ffb6ebc9
commit
d1b140e2b6
|
@ -27,14 +27,14 @@
|
|||
<!-- which already know about limited precision of the double numbers -->
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math.analysis.BrentSolver" />
|
||||
<Method name="solve" params="UnivariateRealFunction,double,double,double,double,double,double" returns="double" />
|
||||
<Method name="solve" params="org.apache.commons.math.analysis.UnivariateRealFunction,double,double,double,double,double,double" returns="double" />
|
||||
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math.analysis.MullerSolver" />
|
||||
<Or>
|
||||
<Method name="solve" params="UnivariateRealFunction,double,double" returns="double" />
|
||||
<Method name="solve2" params="UnivariateRealFunction,double,double" returns="double" />
|
||||
<Method name="solve" params="org.apache.commons.math.analysis.UnivariateRealFunction,double,double" returns="double" />
|
||||
<Method name="solve2" params="org.apache.commons.math.analysis.UnivariateRealFunction,double,double" returns="double" />
|
||||
</Or>
|
||||
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
||||
</Match>
|
||||
|
|
Loading…
Reference in New Issue