forked from pac4j/pac4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spotbugs-exclude.xml
50 lines (49 loc) · 1.52 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<FindBugsFilter>
<Match>
<Class name="~.*AnonymousClient"/>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
</Match>
<Match>
<Class name="~.*BaseClient"/>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
</Match>
<Match>
<Class name="~.*PathMatcher"/>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
</Match>
<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>
<Bug pattern="JUA_DONT_ASSERT_INSTANCEOF_IN_TESTS" />
</Match>
<Match>
<Class name="~.*SAML2Credentials"/>
<Bug code="Se" />
</Match>
<Match>
<Class name="~.*SAML2ClientConfiguration"/>
<Bug code="REC" />
</Match>
</FindBugsFilter>