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:
Luc Maisonobe 2009-01-05 22:17:12 +00:00
parent e7ffb6ebc9
commit d1b140e2b6
2 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -254,7 +254,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>1.0.0</version>
<version>1.2</version>
<configuration>
<threshold>Normal</threshold>
<effort>Default</effort>