diff options
author | Peter Hancock <phancock@apache.org> | 2012-02-06 10:18:09 +0000 |
---|---|---|
committer | Peter Hancock <phancock@apache.org> | 2012-02-06 10:18:09 +0000 |
commit | 65e12053cb81114db964534f7e974c338a8a467b (patch) | |
tree | da816c1ecbc2fffbc070fc893f5144071051a99c /findbugs-exclude.xml | |
parent | 9e004dd3c026a0453959f7773856b4a31a947c50 (diff) | |
download | xmlgraphics-fop-65e12053cb81114db964534f7e974c338a8a467b.tar.gz xmlgraphics-fop-65e12053cb81114db964534f7e974c338a8a467b.zip |
Addressed findbugs and checkstyle regressionsTemp_ImproveAccessibility
Findbugs report generated with version 1.3.9.
Checkstyle report generated with version 5.5.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_ImproveAccessibility@1240963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'findbugs-exclude.xml')
-rw-r--r-- | findbugs-exclude.xml | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/findbugs-exclude.xml b/findbugs-exclude.xml index 67220fc1e..ba6b3abc0 100644 --- a/findbugs-exclude.xml +++ b/findbugs-exclude.xml @@ -1,6 +1,38 @@ <?xml version="1.0" encoding="utf-8"?> <FindBugsFilter> - <!-- The names of public methods will not be modified --> + <Match> + <Class name="org.apache.fop.render.intermediate.IFStructureTreeBuilder"/> + <Field name="delegate"/> + <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/> + </Match> + <Match> + <Class name="org.apache.fop.render.pdf.PDFLogicalStructureHandler"/> + <Field name="currentPage"/> + <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/> + </Match> + <Match> + <Class name="org.apache.fop.render.pdf.PDFLogicalStructureHandler"/> + <Field name="pageParentTreeArray"/> + <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/> + </Match> + <Match> + <Class name="org.apache.fop.render.pdf.PDFStructureTreeBuilder"/> + <Field name="logicalStructureHandler"/> + <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/> + </Match> + <Match> + <Class name="org.apache.fop.render.pdf.PDFStructureTreeBuilder"/> + <Field name="pdfFactory"/> + <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/> + </Match> + <Match> + <Class name="org.apache.fop.accessibility.fo.FO2StructureTreeConverter$1"/> + <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/> + </Match> + <Match> + <Class name="~org.apache.fop.accessibility.fo.FOEventRecorder.*"/> + <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/> + </Match> <Match> <Class name="org.apache.fop.afp.AFPDataObjectInfo"/> <Method name="getUri"/> @@ -5089,4 +5121,4 @@ <Bug pattern="REC_CATCH_EXCEPTION"/> </Match> <!-- /Automatically generated list of exclusions on 18 February 2011 --> -</FindBugsFilter>
\ No newline at end of file +</FindBugsFilter> |