-
Notifications
You must be signed in to change notification settings - Fork 0
/
spotbugs-exclude.xml
74 lines (73 loc) · 2.5 KB
/
spotbugs-exclude.xml
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
<FindBugsFilter>
<Match>
<!-- Bugs reported by SpotBugs for automatic injected null checks -->
<Or>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE"/>
<Bug pattern="RCN_REDUNDANT_COMPARISON_OF_NULL_AND_NONNULL_VALUE"/>
<Bug pattern="SA_LOCAL_SELF_ASSIGNMENT"/>
</Or>
</Match>
<Match>
<Bug pattern="NP_NULL_PARAM_DEREF_NONVIRTUAL"/>
<Class name="com.dua3.meja.ui.fx.FxSheetView" />
</Match>
<Match>
<Or>
<Bug code="FS"/>
<Bug code="EI"/>
<Bug code="EI2"/>
<Bug code="MS"/>
<Bug pattern="PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_CLASS_NAMES"/>
<Bug pattern="CT_CONSTRUCTOR_THROW"/>
<!-- this bug pattern is currently completely broken / https://github.com/spotbugs/spotbugs/issues/1601 -->
<Bug pattern="EI_EXPOSE_REP"/>
<Bug pattern="EI_EXPOSE_REP2"/>
<Bug pattern="THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION"/>
<!-- Spotbugs will complain when a Parameter in an overridden method (like equals()) is marked as @Nullable -->
<Bug pattern="NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION"/>
<Bug pattern="SING_SINGLETON_HAS_NONPRIVATE_CONSTRUCTOR"/>
</Or>
</Match>
‚
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.converter.Converter"/>
<Method name="main"/>
</Match>
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.model.poi.PoiCellStyle$PoiHssfCellStyle"/>
</Match>
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.ui.Rectangle"/>
</Match>
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.ui.swing.SettingsDialog"/>
</Match>
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.model.poi.PoiRow"/>
</Match>
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.model.poi.PoiCellStyle"/>
</Match>
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.model.poi.PoiWorkbook$PoiHssfWorkbook"/>
</Match>
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.model.poi.PoiWorkbook$PoiXssfWorkbook"/>
</Match>
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.model.poi.PoiCellStyle$PoiXssfCellStyle"/>
</Match>
<Match>
<Bug code="RCN"/>
<Class name="com.dua3.meja.samples.CreateCalendar"/>
</Match>
</FindBugsFilter>