Fix ClassCastException via @annolangen from PR #853
This commit is contained in:
parent
0155a9bbee
commit
c4b6f824f0
@ -165,7 +165,7 @@ public class FusionTableImporter {
|
|||||||
List<Object> row = rows.get(i);
|
List<Object> row = rows.get(i);
|
||||||
List<Object> rowOfCells = new ArrayList<Object>(row.size());
|
List<Object> rowOfCells = new ArrayList<Object>(row.size());
|
||||||
for (int j = 0; j < row.size() && j < columns.size(); j++) {
|
for (int j = 0; j < row.size() && j < columns.size(); j++) {
|
||||||
String text = (String)row.get(j);
|
String text = String.valueOf(row.get(j));
|
||||||
if (text.isEmpty()) {
|
if (text.isEmpty()) {
|
||||||
rowOfCells.add(null);
|
rowOfCells.add(null);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user