Fix bug causing Fusion Table rows to get imported multiple times. Initial implementation complete.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@1895 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Tom Morris 2010-11-18 08:19:57 +00:00
parent 675714d03d
commit ed724fd191

View File

@ -271,9 +271,9 @@ public class GDataImporter implements UrlImporter {
} else {
row.cells.add(null);
}
project.rows.add(row);
values = getTableRow(scanner);
}
project.rows.add(row);
values = getTableRow(scanner);
}
}