You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2016/06/12 01:18:12 UTC

svn commit: r1747947 - /poi/trunk/src/resources/devtools/findbugs-filters.xml

Author: kiwiwings
Date: Sun Jun 12 01:18:12 2016
New Revision: 1747947

URL: http://svn.apache.org/viewvc?rev=1747947&view=rev
Log:
ignore invalid performance issues - e.g. see #57840

Modified:
    poi/trunk/src/resources/devtools/findbugs-filters.xml

Modified: poi/trunk/src/resources/devtools/findbugs-filters.xml
URL: http://svn.apache.org/viewvc/poi/trunk/src/resources/devtools/findbugs-filters.xml?rev=1747947&r1=1747946&r2=1747947&view=diff
==============================================================================
--- poi/trunk/src/resources/devtools/findbugs-filters.xml (original)
+++ poi/trunk/src/resources/devtools/findbugs-filters.xml Sun Jun 12 01:18:12 2016
@@ -86,4 +86,16 @@
 		<Class name="org.apache.poi.xdgf.exceptions.XDGFException"/>
 		<Bug code="Nm" />
 	</Match>
+    
+    <!-- invalid performance issues - e.g. see #57840 -->
+    <Match>
+        <Class name="org.apache.poi.xssf.usermodel.XSSFRow"/>
+        <Bug pattern="DM_NUMBER_CTOR" />
+    </Match>
+    <Match>
+        <Class name="org.apache.poi.xssf.usermodel.XSSFSheet"/>
+        <Bug pattern="DM_NUMBER_CTOR" />
+    </Match>
+
+
 </FindBugsFilter>
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org