Fixed false positive findbugs warning.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1454462 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2013-03-08 16:57:28 +00:00
parent 2405474275
commit fde2416fe3
1 changed files with 5 additions and 0 deletions

View File

@ -250,6 +250,11 @@
<Method name="getDataRef" params="" returns="org.apache.commons.math3.FieldElement[]" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="org.apache.commons.math3.linear.DiagonalMatrix"/>
<Method name="getDataRef" params="" returns="double[]" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<!-- The equals method for RealVector intentionally throws an exception -->
<Match>
<Class name="org.apache.commons.math3.linear.RealVector"/>