This repository has been archived by the owner on Mar 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathfindbugs-exclude.xml
63 lines (59 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
<FindBugsFilter>
<!-- Filter options: http://findbugs.sourceforge.net/manual/filter.html -->
<!-- Bug codes and descriptions: http://findbugs.sourceforge.net/bugDescriptions.html-->
<Match>
<Class name="com.softwaremill.common.test.web.selenium.AbstractSeleniumTest" />
<Mehtod name="setupBrowser"/>
<Bug code="ST"/>
</Match>
<Match>
<Class name="com.softwaremill.common.test.web.selenium.AbstractSeleniumTest" />
<Field name="selenium"/>
<Bug code="MS"/>
</Match>
<Match>
<Class name="com.softwaremill.common.sqs.util.EmailDescription" />
<Field name="emails"/>
<Bug code="EI2"/>
</Match>
<Match>
<Class name="com.softwaremill.common.sqs.util.EmailDescription" />
<Method name="getEmails"/>
<Bug code="EI"/>
</Match>
<Match>
<Class name="com.softwaremill.common.sqs.util.EmailDescription" />
<Field name="replyToEmails"/>
<Bug code="EI2"/>
</Match>
<Match>
<Class name="com.softwaremill.common.sqs.util.EmailDescription" />
<Method name="getReplyToEmails"/>
<Bug code="EI"/>
</Match>
<Match>
<Class name="com.softwaremill.common.sqs.SQSEmptor" />
<Method name="main"/>
<Bug code="NP"/>
</Match>
<Match>
<Class name="com.softwaremill.common.util.InfiniteSleeper" />
<Method name="sleepInfinitely"/>
<Bug code="UW, Wa"/>
</Match>
<Match>
<Class name="com.softwaremill.common.cdi.security.SecurityExtension" />
<Field name="interceptSecureForMethods"/>
<Bug code="Se"/>
</Match>
<Match>
<Class name="com.softwaremill.common.faces.messages.FacesMessages" />
<Field name="elEvaluator"/>
<Bug code="Se"/>
</Match>
<Match>
<Class name="com.softwaremill.common.faces.messages.FacesMessages" />
<Field name="messages"/>
<Bug code="Se"/>
</Match>
</FindBugsFilter>