HBASE-1310 Off by one error in Bytes.vintToBytes
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@762163 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e2eacecb29
commit
88a42b8ce6
|
@ -72,6 +72,7 @@ Release 0.20.0 - Unreleased
|
|||
(Ken Weiner via Stack)
|
||||
HBASE-1298 master.jsp & table.jsp do not URI Encode table or region
|
||||
names in links (Lars George via Stack)
|
||||
HBASE-1310 Off by one error in Bytes.vintToBytes
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -241,7 +241,6 @@ public class Bytes {
|
|||
result[offset] = ((byte)i);
|
||||
return result;
|
||||
}
|
||||
offset++;
|
||||
|
||||
int len = -112;
|
||||
if (i < 0) {
|
||||
|
|
Loading…
Reference in New Issue