-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspotbugs-exclude.xml
More file actions
26 lines (22 loc) · 964 Bytes
/
spotbugs-exclude.xml
File metadata and controls
26 lines (22 loc) · 964 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
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<!-- CT_CONSTRUCTOR_THROW: ArgumentException in constructors is intentional.
Classes are non-final by design to allow extension by library users. -->
<Match>
<Bug pattern="CT_CONSTRUCTOR_THROW"/>
<Or>
<Class name="fr.dufrenoy.util.UnsynchronizedChunkyList"/>
<Class name="fr.dufrenoy.util.UnsynchronizedSymmetricMap"/>
</Or>
</Match>
<!-- EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS: false positive introduced
by the anonymous wrapper in EntrySetView.iterator(). The instanceof
check targets Map.Entry, which is correct. -->
<Match>
<Bug pattern="EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS"/>
<Class name="fr.dufrenoy.util.UnsynchronizedSymmetricMap$EntrySetView$1$1"/>
</Match>
<Match>
<Class name="~fr\.dufrenoy\.util\.jmh_generated\..*"/>
</Match>
</FindBugsFilter>