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:
parent
ccbe22eb02
commit
ac99bbd13c
|
@ -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="<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="<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[][]" />
|
||||
|
|
Loading…
Reference in New Issue