You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2008/07/26 21:35:36 UTC

svn commit: r680032 - /commons/proper/math/branches/MATH_2_0/findbugs-exclude-filter.xml

Author: luc
Date: Sat Jul 26 12:35:35 2008
New Revision: 680032

URL: http://svn.apache.org/viewvc?rev=680032&view=rev
Log:
filtered out findbugs warnings for intentional and documented features

Modified:
    commons/proper/math/branches/MATH_2_0/findbugs-exclude-filter.xml

Modified: commons/proper/math/branches/MATH_2_0/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/findbugs-exclude-filter.xml?rev=680032&r1=680031&r2=680032&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_0/findbugs-exclude-filter.xml (original)
+++ commons/proper/math/branches/MATH_2_0/findbugs-exclude-filter.xml Sat Jul 26 12:35:35 2008
@@ -50,12 +50,30 @@
 
   <!-- 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[][]" />
     <Bug pattern="EI_EXPOSE_REP" />
   </Match>