blob: 246e7b0312b2cbe8704d2eaa030671e91507c767 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
<?xml version="1.0" encoding="utf-8"?>
<FindBugsFilter>
<!--
!
! This file is divided into two parts:
! 1. APPROVED EXCLUSIONS
! 2. TEMPORARY (UNAPPROVED) EXCLUSIONS
!
! Approved exclusions come in two sub-types:
! 1. general exclusion of a named bug pattern, meaning that all instances that matches the bug
! pattern identifier are excluded;
! 2. specific exclusions for a named bug pattern, meaning that all instance exclusions are
! explicitly enumerated;
!
! All specific exclusions must be accompanied inline (i.e., in the affected source code) by
! a commented out annotation of the form:
!
! // @SuppressFBWarnings("pattern identifier")
!
! where pattern identifier is one of findbugs' named patterns. At an appropriate point in the
! future, these commented out annotations will be uncommented and exclusion patterns removed
! from this file.
!
! Temporary (unapproved) exclusions are short-term work arounds that should be removed as
! soon as possible by either (1) fixing (eliminating) cause of warning, or (2) conversion to
! approved exclusion.
!
! The organization of pattern matches employs the following levels (from top down):
! 1. bug pattern
! 2. or clause matching instances
! 3. class name, if applies to class/interface
! 4. and clause matching class/instance and single or or clause of multiple {method,field} members
!
! for example,
!
! <Match>
! <Bug pattern="pattern identifier"/>
! <Or>
! <And>
! <Class name="dotted class name"/>
! <Member name="unqualified member name"/>
! </And>
! </Or>
! </Match>
!
-->
<!-- START - APPROVED EXCLUSIONS -->
<Match>
<Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
<Or>
<And>
<Class name="org.apache.fop.render.intermediate.IFGraphicContext"/>
<Method name="clone"/>
</And>
</Or>
</Match>
<Match>
<Bug pattern="DM_EXIT"/>
<Or>
<And>
<Class name="org.apache.fop.cli.CommandLineOptions"/>
<Or>
<Method name="parseCustomOutputOption"/>
<Method name="parseOptions"/>
</Or>
</And>
<And>
<Class name="org.apache.fop.cli.Main"/>
<Or>
<Method name="startFOP"/>
<Method name="startFOPWithDynamicClasspath"/>
</Or>
</And>
<And>
<Class name="org.apache.fop.tools.fontlist.FontListMain"/>
<Or>
<Method name="parseArguments"/>
</Or>
</And>
</Or>
</Match>
<Match>
<Bug pattern="EQ_ALWAYS_TRUE"/>
<Or>
<And>
<Class name="org.apache.fop.fo.properties.ToBeImplementedProperty"/>
<Method name="equals"/>
</And>
</Or>
</Match>
<Match>
<Bug pattern="MS_EXPOSE_REP"/>
<Or>
<And>
<Class name="org.apache.fop.fo.FOPropertyMapping"/>
<Method name="getGenericMappings"/>
</And>
</Or>
</Match>
<Match>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
<Or>
<Class name="org.apache.fop.apps.MimeConstants"/>
<Class name="org.apache.fop.events.EventListener"/>
<Class name="org.apache.fop.render.Graphics2DImagePainter"/>
</Or>
</Match>
<Match>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
<Or>
<Class name="org.apache.fop.render.ps.PSFontUtils"/>
<Class name="org.apache.fop.render.ps.PSImageUtils"/>
<Class name="org.apache.fop.svg.GraphicsConfiguration"/>
<Class name="org.apache.fop.svg.PDFTextUtil"/>
<Class name="org.apache.fop.util.QName"/>
</Or>
</Match>
<Match>
<Bug pattern="SE_INNER_CLASS"/>
<Or>
<Class name="org.apache.fop.afp.AFPPaintingState$AFPData"/>
<Class name="org.apache.fop.area.inline.AbstractTextArea$TextAdjustingInfo"/>
<Class name="org.apache.fop.area.inline.InlineArea$InlineAdjustingInfo"/>
<Class name="org.apache.fop.area.LineArea$LineAdjustingInfo"/>
<Class name="org.apache.fop.pdf.PDFPaintingState$PDFData"/>
<Class name="org.apache.fop.util.AbstractPaintingState$StateStack"/>
</Or>
</Match>
<Match>
<Bug pattern="SF_SWITCH_FALLTHROUGH"/>
<Or>
<And>
<Class name="org.apache.fop.render.awt.viewer.PreviewPanel$Reloader"/>
<Method name="run"/>
</And>
</Or>
</Match>
<!-- END - APPROVED EXCLUSIONS -->
<!-- START - TEMPORARY (UNAPPROVED) EXCLUSIONS -->
<Match>
<!-- 131 warnings -->
<Bug pattern="BC_UNCONFIRMED_CAST"/>
</Match>
<Match>
<!-- 15 warnings -->
<Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
</Match>
<Match>
<!-- 27 warnings -->
<Bug pattern="DLS_DEAD_LOCAL_STORE"/>
</Match>
<Match>
<!-- 29 warnings -->
<Bug pattern="DM_CONVERT_CASE"/>
</Match>
<Match>
<!-- 20 warnings -->
<Bug pattern="DM_FP_NUMBER_CTOR"/>
</Match>
<Match>
<!-- 88 warnings -->
<Bug pattern="DM_NUMBER_CTOR"/>
</Match>
<Match>
<!-- 84 warnings -->
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<!-- 55 warnings -->
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<!-- 12 warnings -->
<Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
</Match>
<Match>
<!-- 12 warnings -->
<Bug pattern="MS_OOI_PKGPROTECT"/>
</Match>
<Match>
<!-- 15 warnings -->
<Bug pattern="MS_PKGPROTECT"/>
</Match>
<Match>
<!-- 11 warnings -->
<Bug pattern="NM_CONFUSING"/>
</Match>
<Match>
<!-- 46 warnings -->
<Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
</Match>
<Match>
<!-- 10 warnings -->
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
</Match>
<Match>
<!-- 23 warnings -->
<Bug pattern="REC_CATCH_EXCEPTION"/>
</Match>
<Match>
<!-- 11 warnings -->
<Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
</Match>
<Match>
<!-- 33 warnings -->
<Bug pattern="SE_BAD_FIELD"/>
</Match>
<Match>
<!-- 21 warnings -->
<Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
</Match>
<Match>
<!-- 20 warnings -->
<Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
</Match>
<Match>
<!-- 12 warnings -->
<Bug pattern="URF_UNREAD_FIELD"/>
</Match>
<Match>
<!-- 58 warnings -->
<Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
</Match>
<!-- END - TEMPORARY (UNAPPROVED) EXCLUSIONS -->
</FindBugsFilter>
|