HADOOP-8818. Use equals instead == in MD5MD5CRC32FileChecksum and TFileDumper. Contributed by Brandon Li.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1385374 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit 0c53ed4cd1
)
This commit is contained in:
parent
03afcdd39d
commit
b1d497a7de
|
@ -1170,6 +1170,9 @@ Release 2.7.3 - UNRELEASED
|
|||
HADOOP-12792. TestUserGroupInformation#testGetServerSideGroups fails in
|
||||
chroot (Eric Badger via jlowe)
|
||||
|
||||
HADOOP-8818. Use equals instead == in MD5MD5CRC32FileChecksum
|
||||
and TFileDumper. (Brandon Li via suresh)
|
||||
|
||||
Release 2.7.2 - 2016-01-25
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -134,7 +134,7 @@ public class MD5MD5CRC32FileChecksum extends FileChecksum {
|
|||
|
||||
try {
|
||||
// old versions don't support crcType.
|
||||
if (crcType == null || crcType == "") {
|
||||
if (crcType == null || crcType.equals("")) {
|
||||
finalCrcType = DataChecksum.Type.CRC32;
|
||||
} else {
|
||||
finalCrcType = DataChecksum.Type.valueOf(crcType);
|
||||
|
|
|
@ -126,7 +126,7 @@ class TFileDumper {
|
|||
dataSizeUncompressed += region.getRawSize();
|
||||
}
|
||||
properties.put("Data Block Bytes", Long.toString(dataSize));
|
||||
if (reader.readerBCF.getDefaultCompressionName() != "none") {
|
||||
if (!reader.readerBCF.getDefaultCompressionName().equals("none")) {
|
||||
properties.put("Data Block Uncompressed Bytes", Long
|
||||
.toString(dataSizeUncompressed));
|
||||
properties.put("Data Block Compression Ratio", String.format(
|
||||
|
|
Loading…
Reference in New Issue