-
Notifications
You must be signed in to change notification settings - Fork 64
/
spotbugs-exclude.xml
56 lines (56 loc) · 1.92 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
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<Match>
<And>
<Class name="io.ballerina.stdlib.graphql.runtime.engine.Engine" />
<Bug pattern="BC_UNCONFIRMED_CAST" />
</And>
</Match>
<Match>
<And>
<Class name="io.ballerina.stdlib.graphql.runtime.utils.Utils" />
<Method name = "isFileUpload" />
<Bug pattern="BC_UNCONFIRMED_CAST" />
</And>
</Match>
<Match>
<And>
<Class name="io.ballerina.stdlib.graphql.compiler.Utils" />
<Method name = "getSchemaObject" />
<Bug pattern="BC_UNCONFIRMED_CAST" />
</And>
</Match>
<Match>
<And>
<Class name="io.ballerina.stdlib.graphql.runtime.engine.ExecutionCallback" />
<Method name = "notifyFailure" />
<Bug pattern="DM_EXIT" />
</And>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP, EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="io.ballerina.stdlib.graphql.runtime.engine.Engine" />
<Method name = "createSchema" />
<Bug pattern="DCN_NULLPOINTER_EXCEPTION" />
</Match>
<Match>
<Class name="io.ballerina.stdlib.graphql.commons.types.Directive" />
<Bug pattern="MC_OVERRIDABLE_METHOD_CALL_IN_CONSTRUCTOR" />
</Match>
<Match>
<Class name="io.ballerina.stdlib.graphql.commons.types.Directive" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="io.ballerina.stdlib.graphql.compiler.schema.generator.GraphqlSourceModifier" />
<Method name = "getEntityResolver" />
<Bug pattern="DCN_NULLPOINTER_EXCEPTION" />
</Match>
<Match>
<Class name="io.ballerina.stdlib.graphql.compiler.schema.generator.GraphqlSourceModifier" />
<Method name = "getServiceResolver" />
<Bug pattern="DCN_NULLPOINTER_EXCEPTION" />
</Match>
</FindBugsFilter>