HBASE-4969 tautology in HRegionInfo.readFields
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1212259 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2704cd8a57
commit
0b0fa97084
|
@ -737,7 +737,7 @@ implements WritableComparable<HRegionInfo> {
|
|||
throw new IOException("HTD not found in input buffer", eofe);
|
||||
}
|
||||
this.hashCode = in.readInt();
|
||||
} else if (getVersion() == VERSION) {
|
||||
} else if (getVersion() == version) {
|
||||
this.endKey = Bytes.readByteArray(in);
|
||||
this.offLine = in.readBoolean();
|
||||
this.regionId = in.readLong();
|
||||
|
|
Loading…
Reference in New Issue