Author: tn Date: Wed Mar 27 22:19:10 2013 New Revision: 1461880 URL: http://svn.apache.org/r1461880 Log: Added findbugs exlude filter for new DoublePoint class.
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=1461880&r1=1461879&r2=1461880&view=diff ============================================================================== --- commons/proper/math/trunk/findbugs-exclude-filter.xml (original) +++ commons/proper/math/trunk/findbugs-exclude-filter.xml Wed Mar 27 22:19:10 2013 @@ -281,12 +281,18 @@ <Bug pattern="EI_EXPOSE_REP" /> </Match> <Match> - <Class name="org.apache.commons.math3.stat.clustering.EuclideanDoublePoint"/> + <Or> + <Class name="org.apache.commons.math3.stat.clustering.EuclideanDoublePoint"/> + <Class name="org.apache.commons.math3.ml.clustering.DoublePoint"/> + </Or> <Method name="<init>" params="double[]" returns="void" /> <Bug pattern="EI_EXPOSE_REP2" /> </Match> <Match> - <Class name="org.apache.commons.math3.stat.clustering.EuclideanDoublePoint"/> + <Or> + <Class name="org.apache.commons.math3.stat.clustering.EuclideanDoublePoint"/> + <Class name="org.apache.commons.math3.ml.clustering.DoublePoint"/> + </Or> <Method name="getPoint" params="" returns="double[]" /> <Bug pattern="EI_EXPOSE_REP" /> </Match>