forked from aws-powertools/powertools-lambda-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspotbugs-exclude.xml
More file actions
20 lines (20 loc) · 774 Bytes
/
spotbugs-exclude.xml
File metadata and controls
20 lines (20 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- This file specifies a spotbugs filter for excluding reports that
should not be considered errors.
The format of this file is documented at:
https://spotbugs.readthedocs.io/en/latest/filter.html
When possible, please specify the full names of the bug codes,
using the pattern attribute, to make it clearer what reports are
being suppressed. You can find a listing of codes at:
https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html
-->
<FindBugsFilter>
<Match>
<Bug pattern="DMI_THREAD_PASSED_WHERE_RUNNABLE_EXPECTED"/>
<Or>
<And>
<Class name="helloworld.App"/>
<Method name="threadOption1"/>
</And>
</Or>
</Match>
</FindBugsFilter>