HDFS-15309. Remove redundant String.valueOf method on ExtendedBlockId.java. Contributed by bianqi.

This commit is contained in:
Akira Ajisaka 2020-04-30 15:46:46 +09:00
parent 31b2f687ef
commit b5b45c53a4
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50

View File

@ -76,6 +76,6 @@ public int hashCode() {
@Override
public String toString() {
return String.valueOf(blockId) + "_" + bpId;
return blockId + "_" + bpId;
}
}