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:
parent
3be3e7c290
commit
73d52a51f8
|
@ -90,6 +90,12 @@
|
||||||
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
||||||
</Match>
|
</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 -->
|
<!-- the following expositions of internal representation are intentional and documented -->
|
||||||
<Match>
|
<Match>
|
||||||
|
|
Loading…
Reference in New Issue