Merged bug fix from Stable into Unstable

This commit is contained in:
Matt Hanna 2011-08-17 16:23:31 -04:00
commit a210a62ab9
1 changed files with 2 additions and 2 deletions

View File

@ -59,8 +59,8 @@ public class LowMemoryIntervalSharder implements Iterator<FilePointer> {
*/
public FilePointer next() {
FilePointer current = wrappedIterator.next();
while(wrappedIterator.hasNext() && current.minus(wrappedIterator.peek()) == 0)
current = current.combine(parser,wrappedIterator.next());
//while(wrappedIterator.hasNext() && current.minus(wrappedIterator.peek()) == 0)
// current = current.combine(parser,wrappedIterator.next());
return current;
}