forked from googleapis/google-api-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfindbugs-exclude.xml
More file actions
42 lines (39 loc) · 1.56 KB
/
Copy pathfindbugs-exclude.xml
File metadata and controls
42 lines (39 loc) · 1.56 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<!-- http://findbugs.sourceforge.net/bugDescriptions.html -->
<LastVersion value="-1" relOp="NEQ"/>
<!-- The following have not yet been investigated -->
<!-- The following are known to be bugs and should be fixed -->
<And>
<Package name="com.google.api.client.googleapis.auth.clientlogin"/>
</And>
<!-- The following are known to NOT be bugs and should not be fixed -->
<And>
<Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>
<!-- Class doesn't override equals in superclass -->
<Class name="com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeRequestUrl"/>
</And>
<And>
<Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>
<Class name="com.google.api.client.googleapis.auth.oauth2.GoogleBrowserClientRequestUrl"/>
</And>
<And>
<Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>
<Class name="com.google.api.client.googleapis.GoogleUrl"/>
</And>
<And>
<Bug pattern="NP_DEREFERENCE_OF_READLINE_VALUE"/>
<!-- Dereference of the result of readLine() without nullcheck -->
<Class name="com.google.api.client.googleapis.batch.BatchUnparsedResponse"/>
</And>
<And>
<Bug pattern="NP_NULL_PARAM_DEREF"/>
<!-- Method call passes null for nonnull parameter -->
<Class name="com.google.api.client.googleapis.batch.BatchUnparsedResponse"/>
</And>
<And>
<Bug pattern="DM_DEFAULT_ENCODING"/>
<!-- Reliance on default encoding -->
<Class name="com.google.api.client.googleapis.auth.oauth2.GoogleCredential$Builder"/>
</And>
</FindBugsFilter>