removed two false positives from findbugs
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@731749 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d1b140e2b6
commit
34bc1eed72
|
@ -77,9 +77,17 @@
|
|||
<Method name="getDataRef" params="" returns="double[][]" />
|
||||
<Bug pattern="EI_EXPOSE_REP" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math.linear.DenseRealMatrix"/>
|
||||
<Method name="<init>" params="int,int,double[][],boolean" returns="void" />
|
||||
<Bug pattern="EI_EXPOSE_REP2" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math.util.ResizableDoubleArray"/>
|
||||
<Method name="getInternalValues" params="" returns="double[]" />
|
||||
<Or>
|
||||
<Method name="getValues" params="" returns="double[]" />
|
||||
<Method name="getInternalValues" params="" returns="double[]" />
|
||||
</Or>
|
||||
<Bug pattern="EI_EXPOSE_REP" />
|
||||
</Match>
|
||||
<Match>
|
||||
|
|
Loading…
Reference in New Issue