diff options
author | Simon Pepping <spepping@apache.org> | 2011-02-18 08:18:04 +0000 |
---|---|---|
committer | Simon Pepping <spepping@apache.org> | 2011-02-18 08:18:04 +0000 |
commit | 32d5f37b494f99c2c27b39da9254240f84bade03 (patch) | |
tree | 0725af76f2cc02bf7fba687f63b55667bb0e75b2 /findbugs-exclude.xml | |
parent | 954d14afba4f6807116bc2966e436c804e44cf85 (diff) | |
download | xmlgraphics-fop-32d5f37b494f99c2c27b39da9254240f84bade03.tar.gz xmlgraphics-fop-32d5f37b494f99c2c27b39da9254240f84bade03.zip |
Fixing checkstyle errors and hiding fingbugs errors
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1071912 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'findbugs-exclude.xml')
-rw-r--r-- | findbugs-exclude.xml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/findbugs-exclude.xml b/findbugs-exclude.xml index 116d45951..318fb06cc 100644 --- a/findbugs-exclude.xml +++ b/findbugs-exclude.xml @@ -5019,4 +5019,51 @@ <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/> </Match> <!-- /Automatically generated list of exclusions --> + <!-- Automatically generated list of exclusions on 18 February 2011 --> + <Match> + <Class name="org.apache.fop.afp.goca.GraphicsSetProcessColor"/> + <Method name="writeToStream"/> + <Bug pattern="OS_OPEN_STREAM"/> + </Match> + <Match> + <Class name="org.apache.fop.pdf.PDFFactory"/> + <Method name="makeSeparationColorSpace"/> + <Bug pattern="DM_FP_NUMBER_CTOR"/> + </Match> + <Match> + <Class name="org.apache.fop.pdf.PDFFactory"/> + <Method name="toColorVector"/> + <Bug pattern="DM_FP_NUMBER_CTOR"/> + </Match> + <Match> + <Class name="org.apache.fop.fo.expr.PropertyTokenizer"/> + <Field name="recognizeOperator"/> + <Bug pattern="URF_UNREAD_FIELD"/> + </Match> + <Match> + <Class name="org.apache.fop.layoutmgr.BlockLayoutManager"/> + <Method name="getNextChildElements"/> + <Bug pattern="BC_UNCONFIRMED_CAST"/> + </Match> + <Match> + <Class name="org.apache.fop.util.ColorWithFallback"/> + <!-- Listing the method 'equals' does not work --> + <Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/> + </Match> + <Match> + <Class name="org.apache.fop.util.ColorWithFallback"/> + <Method name="getAlternativeColors"/> + <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/> + </Match> + <Match> + <Class name="org.apache.fop.fo.expr.NamedColorFunction"/> + <Method name="eval"/> + <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/> + </Match> + <Match> + <Class name="org.apache.fop.util.ColorUtil"/> + <Method name="parseAsFopRgbNamedColor"/> + <Bug pattern="REC_CATCH_EXCEPTION"/> + </Match> + <!-- /Automatically generated list of exclusions on 18 February 2011 --> </FindBugsFilter>
\ No newline at end of file |