diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2012-04-25 18:09:51 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2012-04-25 18:09:51 +0000 |
commit | 65ff8fa968cfbea583a779444ded2b343c498ee7 (patch) | |
tree | bbc189feea5ac84936c505e2da96e0fd1b1c70f9 /findbugs-exclude.xml | |
parent | bdf4d4148a983ed545ebe6c4eb18ce79eda7d207 (diff) | |
download | xmlgraphics-fop-65ff8fa968cfbea583a779444ded2b343c498ee7.tar.gz xmlgraphics-fop-65ff8fa968cfbea583a779444ded2b343c498ee7.zip |
Fixed FindBugs warnings
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1330453 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'findbugs-exclude.xml')
-rw-r--r-- | findbugs-exclude.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/findbugs-exclude.xml b/findbugs-exclude.xml index f46b0f1ba..46879d1f6 100644 --- a/findbugs-exclude.xml +++ b/findbugs-exclude.xml @@ -1,5 +1,21 @@ <?xml version="1.0" encoding="utf-8"?> <FindBugsFilter> + <Match> + <Class name="org.apache.fop.fo.properties.FontFamilyProperty"/> + <Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/> + </Match> + <Match> + <Class name="org.apache.fop.fo.properties.CondLengthProperty"/> + <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/> + </Match> + <Match> + <Class name="org.apache.fop.pdf.xref.TrailerDictionary$1FileID"/> + <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/> + </Match> + <Match> + <Class name="org.apache.fop.fo.properties.ToBeImplementedProperty"/> + <Bug pattern="EQ_ALWAYS_TRUE"/> + </Match> <Match> <Class name="org.apache.fop.render.intermediate.IFStructureTreeBuilder"/> <Field name="delegate"/> |