oops, fix tabs->spaces

This commit is contained in:
Dave Brosius 2014-11-05 02:44:17 -05:00
parent ea0cd4caad
commit e369ff69b7
1 changed files with 4 additions and 4 deletions

View File

@ -609,17 +609,17 @@ public class ArrayBackedSortedColumns extends ColumnFamily
public Cell next()
{
try
{
try
{
shouldCallNext = false;
return cells[idx--];
}
}
catch (ArrayIndexOutOfBoundsException e)
{
NoSuchElementException ne = new NoSuchElementException(e.getMessage());
ne.initCause(e);
throw ne;
}
}
}
public void remove()