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 2009/06/19 14:38:01 UTC

svn commit: r786482 - /commons/proper/math/trunk/findbugs-exclude-filter.xml

Author: luc
Date: Fri Jun 19 12:38:01 2009
New Revision: 786482

URL: http://svn.apache.org/viewvc?rev=786482&view=rev
Log:
added back findbugs exclusion rules for a deprecated class that is still there under its old name

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

Modified: commons/proper/math/trunk/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/findbugs-exclude-filter.xml?rev=786482&r1=786481&r2=786482&view=diff
==============================================================================
--- commons/proper/math/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/math/trunk/findbugs-exclude-filter.xml Fri Jun 19 12:38:01 2009
@@ -110,6 +110,16 @@
     <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>
+  <Match>
     <Class name="org.apache.commons.math.linear.BlockFieldMatrix"/>
     <Method name="&lt;init>" params="int,int,org.apache.commons.math.FieldElement[][],boolean" returns="void" />
     <Bug pattern="EI_EXPOSE_REP2" />