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:
Michael Stack 2011-12-09 06:44:51 +00:00
parent 2704cd8a57
commit 0b0fa97084
1 changed files with 1 additions and 1 deletions

View File

@ -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();