HADOOP-16220. Add findbugs ignores for unjustified issues during update to guava to 27.0-jre in hadoop-project

This closes #665

Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
Gabor Bota 2019-03-29 17:26:20 +01:00 committed by Akira Ajisaka
parent 35ff31dd94
commit 53a86e2b8e
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 22 additions and 0 deletions

View File

@ -185,6 +185,28 @@
<Bug pattern="OS_OPEN_STREAM" />
</Match>
<!-- guava 27.0 update: @Nullable is not detected, however it's there -->
<Match>
<Class name="org.apache.hadoop.hdfs.qjournal.server.Journal" />
<Method name="persistPaxosData" />
<Bug pattern="NP_NULL_PARAM_DEREF" />
</Match>
<!-- guava 27.0 update: @Nullable is not detected, however it's there -->
<Match>
<Class name="org.apache.hadoop.hdfs.qjournal.server.JournalNode" />
<Method name="getLogDir" />
<Bug pattern="NP_NULL_PARAM_DEREF" />
</Match>
<!-- guava 27.0 update: redundant nullcheck (assert for not null) -->
<Match>
<Class name="org.apache.hadoop.hdfs.qjournal.server.JournalNode" />
<Method name="getLogDir" />
<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE" />
</Match>
<!-- Don't complain about LocalDatanodeInfo's anonymous class -->
<Match>
<Class name="org.apache.hadoop.hdfs.client.impl.BlockReaderLocal$LocalDatanodeInfo$1" />