Added findbugs exlude filter for new DoublePoint class.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1461880 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-03-27 22:19:10 +00:00
parent 4a8090157a
commit 7beb54f57c
1 changed files with 8 additions and 2 deletions

View File

@ -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="&lt;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>