forked from ccavanaugh/jgnash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindbugs-exclude-filter.xml
125 lines (99 loc) · 3.26 KB
/
findbugs-exclude-filter.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
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
<?xml version="1.0"?>
<!--
This file contains some false positive bugs detected by Findbugs. Their
false positive nature has been analyzed individually and they have been
put here to instruct Findbugs to ignore them.
-->
<!--suppress XmlUnboundNsPrefix -->
<FindBugsFilter>
<Match>
<Bug pattern="SE_NO_SERIALVERSIONID"/>
</Match>
<Match>
<Bug pattern="PATH_TRAVERSAL_IN"/>
</Match>
<Match>
<Bug pattern="DM_EXIT"/>
</Match>
<Match>
<Bug pattern="CRLF_INJECTION_LOGS"/>
</Match>
<Match>
<Bug pattern="OBJECT_DESERIALIZATION"/>
</Match>
<Match>
<Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
</Match>
<Match>
<Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
</Match>
<Match>
<Class name="jgnash.uifx.views.main.ConsoleDialogController"/>
<Method name="handleForceGarbageCollection"/>
<Bug pattern="DM_GC"/>
</Match>
<Match>
<Class name="jgnash.report.ui.FontRegistry"/>
<Method name="registerFontDirectories"/>
<Bug pattern="DMI_HARDCODED_ABSOLUTE_FILENAME"/>
</Match>
<Match>
<Class name="jgnash.ui.register.table.AbstractRegisterTableModel"/>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<Class name="jgnash.ui.MainFrame"/>
<Method name="performControlledShutdown"/>
<Bug pattern="DM_EXIT"/>
</Match>
<Match>
<Class name="jgnash.engine.jpa.JpaNetworkServer"/>
<Method name="startServer"/>
<Bug pattern="DM_EXIT"/>
</Match>
<!-- Empty password is used by default -->
<Match>
<Class name="jgnash.engine.jpa.AbstractJpaDataStore"/>
<Method name="initEmptyDatabase"/>
<Bug pattern="DMI_EMPTY_DB_PASSWORD"/>
</Match>
<Match>
<Class name="jgnash.engine.concurrent.DistributedLockManager"/>
<Method name="changeLockState"/>
<Bug pattern="JLM_JSR166_UTILCONCURRENT_MONITORENTER"/>
</Match>
<Match>
<Class name="jgnash.convert.importat.qif.QifParser"/>
<Bug pattern="URF_UNREAD_FIELD"/>
</Match>
<Match>
<Class name="jgnash.convert.importat.qif.QifParser$QifClassItem"/>
<Bug pattern="URF_UNREAD_FIELD"/>
</Match>
<Match>
<Class name="jgnash.convert.importat.qif.QifParser$QifSecurity"/>
<Bug pattern="URF_UNREAD_FIELD"/>
</Match>
<!-- Super class uses a UUID for hash and equality -->
<Match>
<Class name="jgnash.convert.importat.ofx.ImportTransaction"/>
<Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>
</Match>
<!-- Super class uses a UUID for hash and equality -->
<Match>
<Class name="jgnash.convert.importat.qif.QifTransaction"/>
<Bug pattern="URF_UNREAD_FIELD, EQ_DOESNT_OVERRIDE_EQUALS"/>
</Match>
<Match>
<Class name="com.jidesoft.swing.JideScrollPane"/>
<Bug pattern="RV_RETURN_VALUE_IGNORED"/>
</Match>
<Match>
<Class name="com.jidesoft.swing.JideSwingUtilities"/>
<Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
</Match>
<Match>
<Class name="com.jidesoft.swing.JideSwingUtilities$ViewportSynchronizationChangeListener"/>
<Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
</Match>
</FindBugsFilter>