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:
parent
4e9933e40c
commit
7218e827a4
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue