aboutsummaryrefslogtreecommitdiffstats
path: root/findbugs-exclude.xml
diff options
context:
space:
mode:
authorSimon Pepping <spepping@apache.org>2011-06-15 11:04:33 +0000
committerSimon Pepping <spepping@apache.org>2011-06-15 11:04:33 +0000
commit82163b6a159d14c838f9c3a3b8d40137f93fc11b (patch)
treeb593f05e98912672e0116f4528cd263c38a68e8d /findbugs-exclude.xml
parent860ebd14107d5288d95360b04cb8e3a375922f7b (diff)
downloadxmlgraphics-fop-82163b6a159d14c838f9c3a3b8d40137f93fc11b.tar.gz
xmlgraphics-fop-82163b6a159d14c838f9c3a3b8d40137f93fc11b.zip
Fix checkstyle and findbugs issues
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1135995 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'findbugs-exclude.xml')
-rw-r--r--findbugs-exclude.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/findbugs-exclude.xml b/findbugs-exclude.xml
index 318fb06cc..67220fc1e 100644
--- a/findbugs-exclude.xml
+++ b/findbugs-exclude.xml
@@ -132,6 +132,29 @@
<Bug pattern="NM_CONFUSING"/>
</Match>
<!-- /The names of public methods will not be modified -->
+ <!-- These casts are checked in the code -->
+ <Match>
+ <Class name="org.apache.fop.render.afp.AFPImageHandlerGraphics2D"/>
+ <Method name="isCompatible"/>
+ <Bug pattern="BC_UNCONFIRMED_CAST"/>
+ </Match>
+ <Match>
+ <Class name="org.apache.fop.render.afp.AFPImageHandlerSVG"/>
+ <Method name="isCompatible"/>
+ <Bug pattern="BC_UNCONFIRMED_CAST"/>
+ </Match>
+ <Match>
+ <Class name="org.apache.fop.render.afp.AbstractPDFImageHandler"/>
+ <Method name="handleImage"/>
+ <Bug pattern="BC_UNCONFIRMED_CAST"/>
+ </Match>
+ <!-- /These casts are checked in the code -->
+ <!-- return null is OK -->
+ <Match>
+ <Class name="org.apache.fop.svg.ACIUtils"/>
+ <Method name="findFontsForBatikACI"/>
+ <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
+ </Match>
<!-- Automatically generated list of exclusions -->
<Match>
<Class name="org.apache.fop.area.BodyRegion"/>