This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfindbugs-exclude.xml
52 lines (51 loc) · 1.8 KB
/
findbugs-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
<FindBugsFilter>
<Match>
<!-- Exclude unused loggers -->
<Field type="org.apache.log4j.Logger"/>
<Bug code="UrF"/>
</Match>
<!--
The shadowing of the superclass name is intentional to provide a seamless wrapper for
enhanced JSON handling.
-->
<Match>
<Class name="au.com.gaiaresources.bdrs.json.JSONArray"/>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS" />
</Match>
<Match>
<Class name="au.com.gaiaresources.bdrs.json.JSONObject"/>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS" />
</Match>
<Match>
<Class name="au.com.gaiaresources.bdrs.db.SessionFactory"/>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE" />
</Match>
<Match>
<Class name="au.com.gaiaresources.bdrs.db.Session"/>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE" />
</Match>
<Match>
<Class name="au.com.gaiaresources.bdrs.db.TransactionCallback"/>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE" />
</Match>
<Match>
<Class name="au.com.gaiaresources.bdrs.security.UserDetails"/>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE" />
</Match>
<Match>
<Class name="au.com.gaiaresources.bdrs.servlet.HandlerExceptionResolver"/>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE" />
</Match>
<Match>
<Class name="au.com.gaiaresources.bdrs.validation.Validator"/>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE" />
</Match>
<Match>
<Class name="au.com.gaiaresources.bdrs.model.theme.Theme"/>
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="au.com.gaiaresources.bdrs.model.user.User"/>
<Bug pattern="EI_EXPOSE_REP, EI_EXPOSE_REP2" />
</Match>
</FindBugsFilter>