HDFS-15309. Remove redundant String.valueOf method on ExtendedBlockId.java. Contributed by bianqi.
This commit is contained in:
parent
31b2f687ef
commit
b5b45c53a4
|
@ -76,6 +76,6 @@ final public class ExtendedBlockId {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.valueOf(blockId) + "_" + bpId;
|
||||
return blockId + "_" + bpId;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue