filtered out findbugs warnings for intentional and documented features

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@680032 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-07-26 19:35:35 +00:00
parent ccbe22eb02
commit ac99bbd13c
1 changed files with 18 additions and 0 deletions

View File

@ -49,11 +49,29 @@
<!-- the following expositions of internal representation are intentional and documented -->
<Match>
<Class name="org.apache.commons.math.ode.sampling.AbstractStepInterpolator"/>
<Or>
<Method name="getInterpolatedState" params="" returns="double[]" />
<Method name="getInterpolatedDerivatives" params="" returns="double[]" />
</Or>
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="org.apache.commons.math.linear.BigMatrixImpl"/>
<Method name="&lt;init>" params="java.math.BigDecimal[][],boolean" returns="void" />
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="org.apache.commons.math.linear.BigMatrixImpl"/>
<Method name="getDataRef" params="" returns="java.math.BigDecimal[][]" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="org.apache.commons.math.linear.RealMatrixImpl"/>
<Method name="&lt;init>" params="double[][],boolean" returns="void" />
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="org.apache.commons.math.linear.RealMatrixImpl"/>
<Method name="getDataRef" params="" returns="double[][]" />