Author: tn
Date: Thu Dec 13 19:18:55 2012
New Revision: 1421434
URL: http://svn.apache.org/viewvc?rev=1421434&view=rev
Log:
Added findbugs exclude filter for class copied to the new optim package.
Modified:
commons/proper/math/trunk/findbugs-exclude-filter.xml
Modified: commons/proper/math/trunk/findbugs-exclude-filter.xml
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/findbugs-exclude-filter.xml?rev=1421434&r1=1421433&r2=1421434&view=diff
==============================================================================
--- commons/proper/math/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/math/trunk/findbugs-exclude-filter.xml Thu Dec 13 19:18:55
2012
@@ -83,6 +83,11 @@
<Method name="equals" params="java.lang.Object" returns="boolean" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
+ <Match>
+ <Class name="org.apache.commons.math3.optim.linear.LinearConstraint" />
+ <Method name="equals" params="java.lang.Object" returns="boolean" />
+ <Bug pattern="FE_FLOATING_POINT_EQUALITY" />
+ </Match>
<!-- The following equality test is intentional and needed for rounding
purposes -->
<Match>