-
Notifications
You must be signed in to change notification settings - Fork 4
/
fb-excl.xml
27 lines (25 loc) · 947 Bytes
/
fb-excl.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
<FindBugsFilter>
<!--
Sadly, we have no control over the code that ANTLR generates...
-->
<Match>
<Class name="edu.caltech.nanodb.sqlparse.NanoSqlLexer" />
<Method name="<init>" params="antlr.LexerSharedInputState" returns="void" />
<Bug pattern="DM_NUMBER_CTOR" />
</Match>
<Match>
<Class name="edu.caltech.nanodb.sqlparse.NanoSqlParser" />
<Field name="_tokenNames" />
<Bug pattern="MS_PKGPROTECT" />
</Match>
<!--
Ignore this warning, since TypeConverter.getBooleanValue() has to return
null when its input is null, since this is how we represent the SQL NULL
value.
-->
<Match>
<Class name="edu.caltech.nanodb.expressions.TypeConverter" />
<Method name="getBooleanValue" params="java.lang.Object" returns="java.lang.Boolean" />
<Bug pattern="NP_BOOLEAN_RETURN_NULL" />
</Match>
</FindBugsFilter>