Added filter for spurious dead store warning.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1054344 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-01-02 02:56:35 +00:00
parent 3be3e7c290
commit 73d52a51f8
1 changed files with 6 additions and 0 deletions

View File

@ -90,6 +90,12 @@
<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>