diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/resources/devtools/findbugs-filters.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/resources/devtools/findbugs-filters.xml b/src/resources/devtools/findbugs-filters.xml index 12fc2ecc8d..458f5eaa1c 100644 --- a/src/resources/devtools/findbugs-filters.xml +++ b/src/resources/devtools/findbugs-filters.xml @@ -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 |