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
1 changed files with 1 additions and 1 deletions

View File

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