Author: tn Date: Sun Dec 2 18:55:25 2012 New Revision: 1416233 URL: http://svn.apache.org/viewvc?rev=1416233&view=rev Log: Add exclusion filter for new EuclideanDoublePoint.
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=1416233&r1=1416232&r2=1416233&view=diff ============================================================================== --- commons/proper/math/trunk/findbugs-exclude-filter.xml (original) +++ commons/proper/math/trunk/findbugs-exclude-filter.xml Sun Dec 2 18:55:25 2012 @@ -232,6 +232,16 @@ <Method name="getPoint" params="" returns="int[]" /> <Bug pattern="EI_EXPOSE_REP" /> </Match> + <Match> + <Class name="org.apache.commons.math3.stat.clustering.EuclideanDoublePoint"/> + <Method name="<init>" params="double[]" returns="void" /> + <Bug pattern="EI_EXPOSE_REP2" /> + </Match> + <Match> + <Class name="org.apache.commons.math3.stat.clustering.EuclideanDoublePoint"/> + <Method name="getPoint" params="" returns="double[]" /> + <Bug pattern="EI_EXPOSE_REP" /> + </Match> <!-- The following cases are intentional unit tests for null parameters --> <Match>