forked from softwaremill/softwaremill-common
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfindbugs-exclude.xml
More file actions
28 lines (24 loc) · 837 Bytes
/
findbugs-exclude.xml
File metadata and controls
28 lines (24 loc) · 837 Bytes
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
<FindBugsFilter>
<!-- Filter options: http://findbugs.sourceforge.net/manual/filter.html -->
<!-- Bug codes and descriptions: http://findbugs.sourceforge.net/bugDescriptions.html-->
<Match>
<Class name="pl.softwaremill.common.uitest.selenium.AbstractSeleniumTest" />
<Mehtod name="setupBrowser"/>
<Bug code="ST"/>
</Match>
<Match>
<Class name="pl.softwaremill.common.uitest.selenium.AbstractSeleniumTest" />
<Field name="selenium"/>
<Bug code="MS"/>
</Match>
<Match>
<Class name="pl.softwaremill.common.sqs.util.EmailDescription" />
<Field name="emails"/>
<Bug code="EI2"/>
</Match>
<Match>
<Class name="pl.softwaremill.common.sqs.util.EmailDescription" />
<Method name="getEmails"/>
<Bug code="EI"/>
</Match>
</FindBugsFilter>