diff --git a/main/src/com/google/refine/importers/TabularImportingParserBase.java b/main/src/com/google/refine/importers/TabularImportingParserBase.java index d19d3b5a7..e1118a59e 100644 --- a/main/src/com/google/refine/importers/TabularImportingParserBase.java +++ b/main/src/com/google/refine/importers/TabularImportingParserBase.java @@ -103,7 +103,7 @@ abstract public class TabularImportingParserBase extends ImportingParserBase { } } - boolean guessCellValueTypes = JSONUtilities.getBoolean(options, "guessCellValueTypes", true); + boolean guessCellValueTypes = JSONUtilities.getBoolean(options, "guessCellValueTypes", false); boolean storeBlankRows = JSONUtilities.getBoolean(options, "storeBlankRows", true); boolean storeBlankCellsAsNulls = JSONUtilities.getBoolean(options, "storeBlankCellsAsNulls", true); @@ -172,7 +172,7 @@ abstract public class TabularImportingParserBase extends ImportingParserBase { project, columnNames, c, hasOurOwnColumnNames); Object value = cells.get(c); - if (value != null && value instanceof Cell) { + if (value instanceof Cell) { row.setCell(column.getCellIndex(), (Cell) value); rowHasData = true; } else if (ExpressionUtils.isNonBlankData(value)) {