forked from EdurtIO/gcm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfindbugs.xml
More file actions
44 lines (44 loc) · 1.53 KB
/
findbugs.xml
File metadata and controls
44 lines (44 loc) · 1.53 KB
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
<?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 it must ignore them.
-->
<FindBugsFilter>
<Match>
<Class name="io.edurt.gcm.netty.router.Routers" />
<Bug pattern="MS_MUTABLE_COLLECTION" />
</Match>
<Match>
<Class name="io.edurt.gcm.netty.dispatcher.RequestDispatcher" />
<Bug pattern="DM_DEFAULT_ENCODING" />
</Match>
<Match>
<Class name="io.edurt.gcm.netty.handler.HttpRequestHandler" />
<Bug pattern="DLS_DEAD_LOCAL_STORE" />
</Match>
<Match>
<Class name="io.edurt.gcm.redis.provider.RedisProvider" />
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
</Match>
<Match>
<Class name="io.edurt.gcm.netty.dispatcher.ParameterDispatcher" />
<Bug pattern="REC_CATCH_EXCEPTION" />
</Match>
<Match>
<Class name="io.edurt.gcm.netty.dispatcher.RequestDispatcher" />
<Bug pattern="REC_CATCH_EXCEPTION" />
</Match>
<Match>
<Class name="io.edurt.gcm.common.jdk.Classs" />
<Bug pattern="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED" />
</Match>
<Match>
<Class name="io.edurt.gcm.base.client.BasicRestfulConnectionFactory" />
<Bug pattern="DLS_DEAD_LOCAL_STORE" />
</Match>
<Match>
<Class name="io.edurt.gcm.kafka.KafkaProvider" />
<Bug pattern="IS2_INCONSISTENT_SYNC" />
</Match>
</FindBugsFilter>