-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathfindbugs-exclude.xml
45 lines (45 loc) · 1.38 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
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<Match>
<Class name="io.kcache.CompositeCacheUpdateHandler"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<Class name="io.kcache.bdbje.SerdeWrapper"/>
<Bug pattern="MC_OVERRIDABLE_METHOD_CALL_IN_READ_OBJECT"/>
</Match>
<Match>
<Class name="io.kcache.utils.EnumRecommender"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<Class name="io.kcache.utils.KeyBufferComparator"/>
<Bug pattern="SE_BAD_FIELD"/>
</Match>
<Match>
<Class name="io.kcache.utils.KeyBytesComparator"/>
<Bug pattern="SE_BAD_FIELD"/>
</Match>
<Match>
<Class name="io.kcache.utils.KeyComparator"/>
<Bug pattern="SE_BAD_FIELD"/>
</Match>
<Match>
<Class name="~io.kcache.utils.PersistentCache.*"/>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE"/>
</Match>
<Match>
<Class name="io.kcache.benchmark.PersistentCacheBenchmark"/>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE"/>
</Match>
<Match>
<Bug pattern="CT_CONSTRUCTOR_THROW"/>
</Match>
<!-- exclude generated code -->
<Match>
<Class name="~io.kcache.benchmark.jmh_generated.*"/>
</Match>
<Match>
<Class name="~io.kcache.rdbms.jooq.*"/>
</Match>
</FindBugsFilter>