Back-out HBASE-968 ... already fixed-- thanks to Doğacan Güney

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@708644 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-10-28 19:32:54 +00:00
parent 52b20f4b18
commit ae27a2bc3f
2 changed files with 1 additions and 3 deletions

View File

@ -49,8 +49,6 @@ Release 0.19.0 - Unreleased
HBASE-728, HBASE-956, HBASE-955 Address thread naming, which threads are
Chores, vs Threads, make HLog manager the write ahead log and
not extend it to provided optional HLog sync operations.
HBASE-968 ArrayIndexOutOfBoundsException from Cell iterator()
(Billy Pearson via Stack)
IMPROVEMENTS
HBASE-901 Add a limit to key length, check key and value length on client side

View File

@ -166,7 +166,7 @@ public class Cell implements Writable, Iterable<Cell> {
}
public boolean hasNext() {
return currentValue + 1 < values.length;
return currentValue < values.length;
}
public Cell next() {