forked from pac4j/pac4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spotbugs-exclude.xml
35 lines (34 loc) · 1.05 KB
/
spotbugs-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
<FindBugsFilter>
<Match>
<Class name="~.*BooleanConverter$"/>
<Bug code="NP" />
</Match>
<Match>
<Class name="~.*DefaultCallbackLogic"/>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" />
</Match>
<Match>
<Class name="~.*DefaultCallbackLogicTests"/>
<Bug pattern="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE" />
</Match>
<Match>
<Class name="~.*DefaultLogoutLogic"/>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" />
</Match>
<Match>
<!-- disabling the check for all classes because of a bug in JDK11 <Class name="~.*MongoProfileService"/-->
<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE" />
</Match>
<!-- JDK10 build fix -->
<Match>
<Bug pattern="OBL_UNSATISFIED_OBLIGATION" />
</Match>
<Match>
<Class name="~.*SAML2Credentials"/>
<Bug code="Se" />
</Match>
<Match>
<Class name="~.*SAML2ClientConfiguration"/>
<Bug code="REC" />
</Match>
</FindBugsFilter>