forked from BrentDouglas/vial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfindbugs-exclude.xml
More file actions
23 lines (23 loc) · 907 Bytes
/
findbugs-exclude.xml
File metadata and controls
23 lines (23 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter xmlns="http://findbugs.sourceforge.net/filter/3.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://findbugs.sourceforge.net/filter/3.0.0 https://findbugs.googlecode.com/git/findbugs/etc/findbugsfilter.xsd">
<Match>
<Class name="io.machinecode.vial.core.BadHashCode"/>
</Match>
<Match>
<Package name="io.machinecode.vial.bench.perf"/>
</Match>
<Match>
<Package name="io.machinecode.vial.core.map"/>
<Bug code="HE"/>
</Match>
<Match>
<Class name="~io\.machinecode\.vial\.core\.map\..ZHashMapF.*"/>
<Bug pattern="NP_BOOLEAN_RETURN_NULL"/>
</Match>
<Match>
<Class name="~io\.machinecode\.vial\.core\.list\..ArrayList.*"/>
<Bug pattern="IT_NO_SUCH_ELEMENT"/>
</Match>
</FindBugsFilter>