Author: tn Date: Thu Feb 16 21:14:15 2012 New Revision: 1245178 URL: http://svn.apache.org/viewvc?rev=1245178&view=rev Log: Updated findbugs-exclude-list due to renamed classes.
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=1245178&r1=1245177&r2=1245178&view=diff ============================================================================== --- commons/proper/math/trunk/findbugs-exclude-filter.xml (original) +++ commons/proper/math/trunk/findbugs-exclude-filter.xml Thu Feb 16 21:14:15 2012 @@ -26,11 +26,6 @@ <!-- the following equality tests are part of the reference algorithms --> <!-- which already know about limited precision of the double numbers --> <Match> - <Class name="org.apache.commons.math3.util.Precision" /> - <Method name="roundUnscaled" params="double,double,int" returns="double" /> - <Bug pattern="FE_FLOATING_POINT_EQUALITY" /> - </Match> - <Match> <Class name="org.apache.commons.math3.distribution.SaddlePointExpansion" /> <Or> <Method name="getDeviancePart" params="double,double" returns="double" /> @@ -86,8 +81,8 @@ <!-- The following equality test is intentional and needed for rounding purposes --> <Match> - <Class name="org.apache.commons.math3.util.MathUtils" /> - <Method name="roundUnscaled" params="double,double,int" returns="double" /> + <Class name="org.apache.commons.math3.util.Precision" /> + <Method name="roundUnscaled" params="double,double,int" returns="double" /> <Bug pattern="FE_FLOATING_POINT_EQUALITY" /> </Match> @@ -119,17 +114,17 @@ <Bug pattern="EI_EXPOSE_REP" /> </Match> <Match> - <Class name="org.apache.commons.math3.optimization.RealPointValuePair"/> + <Class name="org.apache.commons.math3.optimization.PointValuePair"/> <Method name="getPointRef" params="" returns="double[]" /> <Bug pattern="EI_EXPOSE_REP" /> </Match> <Match> - <Class name="org.apache.commons.math3.optimization.RealPointValuePair"/> + <Class name="org.apache.commons.math3.optimization.PointValuePair"/> <Method name="<init>" params="double[],double,boolean" returns="void" /> <Bug pattern="EI_EXPOSE_REP2" /> </Match> <Match> - <Class name="org.apache.commons.math3.optimization.VectorialPointValuePair"/> + <Class name="org.apache.commons.math3.optimization.PointVectorValuePair"/> <Or> <Method name="getPointRef" params="" returns="double[]" /> <Method name="getValueRef" params="" returns="double[]" /> @@ -137,7 +132,7 @@ <Bug pattern="EI_EXPOSE_REP" /> </Match> <Match> - <Class name="org.apache.commons.math3.optimization.VectorialPointValuePair"/> + <Class name="org.apache.commons.math3.optimization.PointVectorValuePair"/> <Method name="<init>" params="double[],double[][],boolean" returns="void" /> <Bug pattern="EI_EXPOSE_REP2" /> </Match>