HDFS-17451. RBF: fix spotbugs for redundant nullcheck of dns. (#6697)

This commit is contained in:
Jian Zhang 2024-04-23 19:11:51 +08:00 committed by GitHub
parent 6404692c09
commit 782c501441
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1089,13 +1089,7 @@ public DatanodeInfo[] getDatanodeReport(DatanodeReportType type)
DatanodeInfo[] getCachedDatanodeReport(DatanodeReportType type)
throws IOException {
try {
DatanodeInfo[] dns = this.dnCache.get(type);
if (dns == null) {
LOG.debug("Get null DN report from cache");
dns = getCachedDatanodeReportImpl(type);
this.dnCache.put(type, dns);
}
return dns;
return this.dnCache.get(type);
} catch (ExecutionException e) {
LOG.error("Cannot get the DN report for {}", type, e);
Throwable cause = e.getCause();