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:
David Huynh 2011-08-06 19:37:23 +00:00
parent bad7266534
commit c5078d1887

View File

@ -160,7 +160,7 @@ public class ExcelImporter extends TabularImportingParserBase {
@Override
public List<Object> getNextRowOfCells() throws IOException {
if (nextRow >= lastRow) {
if (nextRow > lastRow) {
return null;
}