Added filter for spurious dead store warning.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1054344 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-01-02 02:56:35 +00:00
parent 4e9933e40c
commit 7218e827a4
1 changed files with 7 additions and 1 deletions

View File

@ -89,7 +89,13 @@
<Method name="atan2" params="double,double" returns="double" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
<!-- Spurious: Findbugs confused by final local variables -->
<Match>
<Class name="org.apache.commons.math.util.FastMath" />
<Method name="atan" params="double,double,boolean" returns="double" />
<Bug pattern="DLS_DEAD_LOCAL_STORE" />
</Match>
<!-- the following expositions of internal representation are intentional and documented -->
<Match>