source: josm/trunk/tools/findbugs/josm-filter.xml@ 12016

Last change on this file since 12016 was 11902, checked in by Don-vip, 7 years ago

findbugs - ignore some specific warnings

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1<FindBugsFilter>
2
3 <Match>
4 <Bug pattern="DM_EXIT" />
5 </Match>
6 <Match>
7 <Bug pattern="DMI_HARDCODED_ABSOLUTE_FILENAME" />
8 </Match>
9 <Match>
10 <Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS" />
11 </Match>
12 <Match>
13 <Bug pattern="NM_CONFUSING" />
14 </Match>
15 <Match>
16 <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" />
17 </Match>
18 <Match>
19 <Bug pattern="SE_BAD_FIELD" />
20 </Match>
21 <Match>
22 <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" />
23 </Match>
24 <Match>
25 <Bug pattern="UI_INHERITANCE_UNSAFE_GETRESOURCE" />
26 </Match>
27 <Match>
28 <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR" />
29 </Match>
30
31 <Match>
32 <Bug pattern="EI_EXPOSE_REP2" />
33 <Class name="org.openstreetmap.josm.tools.CopyList" />
34 </Match>
35 <Match>
36 <Bug pattern="MS_CANNOT_BE_FINAL" />
37 <Class name="org.openstreetmap.josm.Main" />
38 </Match>
39 <Match>
40 <Bug pattern="MS_SHOULD_BE_FINAL" />
41 <Class name="org.openstreetmap.josm.Main" />
42 </Match>
43
44 <Match>
45 <Class name="~com.*" />
46 </Match>
47 <Match>
48 <Class name="~gnu.getopt.*" />
49 </Match>
50 <Match>
51 <Class name="~javax.json.*" />
52 </Match>
53 <Match>
54 <Class name="~oauth.signpost.*" />
55 </Match>
56 <Match>
57 <Class name="~org.apache.*" />
58 </Match>
59 <Match>
60 <Class name="~org.glassfish.json.*" />
61 </Match>
62 <Match>
63 <Class name="~org.jdesktop.swinghelper.debug.*" />
64 </Match>
65 <Match>
66 <Class name="~org.openstreetmap.gui.jmapviewer.*" />
67 </Match>
68 <Match>
69 <Class name="~org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.*" />
70 </Match>
71 <Match>
72 <Class name="~org.openstreetmap.josm.data.imagery.types.*" />
73 </Match>
74 <Match>
75 <Class name="~org.w3._2001.xmlschema.*" />
76 </Match>
77
78</FindBugsFilter>
Note: See TracBrowser for help on using the repository browser.