-
Notifications
You must be signed in to change notification settings - Fork 102
/
spotbugs-exclude.xml
44 lines (44 loc) · 1.17 KB
/
spotbugs-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
<FindBugsFilter>
<Match>
<Class name="~.*PlayHttpActionAdapter"/>
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="~.*PlayHttpActionAdapter"/>
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="~.*PlayWebContextResultHolder"/>
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="~.*PlayWebContextResultHolder"/>
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="~.*SecureAction"/>
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="~.*PlayCacheSessionStore"/>
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="~.*PlayCacheSessionStore"/>
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="~.*MockInMemoryAsyncCacheApi.*" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="~.*PlayCacheStore"/>
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="~.*SecurityFilter.*"/>
</Match>
<Match>
<Class name="~.*scala.*"/>
</Match>
</FindBugsFilter>