-
Notifications
You must be signed in to change notification settings - Fork 54
/
findbugs-exclude.xml
43 lines (42 loc) · 1.21 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
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<Match>
<Package name="org.apache.hadoop.hbase.client.mock*"/>
</Match>
<Match>
<Class name="io.hgraphdb.Constants"/>
<Bug pattern="MS_MUTABLE_ARRAY"/>
</Match>
<Match>
<Class name="io.hgraphdb.mapreduce.index.IndexTool"/>
<Bug pattern="NP_NULL_ON_SOME_PATH_EXCEPTION"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<Bug pattern="MS_EXPOSE_REP"/>
</Match>
<Match>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE"/>
</Match>
<!-- don't worry about name shadowing -->
<Match>
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
</Match>
<!-- don't worry about ignored exceptions -->
<Match>
<Bug pattern="DE_MIGHT_IGNORE"/>
</Match>
<!-- don't worry about dead local stores or unread fields -->
<Match>
<Bug pattern="DLS_DEAD_LOCAL_STORE,URF_UNREAD_FIELD"/>
</Match>
<!-- don't worry about non-static inner classes. -->
<Match>
<Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
</Match>
</FindBugsFilter>