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:
parent
4a8090157a
commit
7beb54f57c
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue