Fixed issue 428: Excel import sometimes drops last row of data.
git-svn-id: http://google-refine.googlecode.com/svn/trunk@2189 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
parent
bad7266534
commit
c5078d1887
@ -160,7 +160,7 @@ public class ExcelImporter extends TabularImportingParserBase {
|
||||
|
||||
@Override
|
||||
public List<Object> getNextRowOfCells() throws IOException {
|
||||
if (nextRow >= lastRow) {
|
||||
if (nextRow > lastRow) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user