Fix initial options for the quote character

This commit is contained in:
Antonin Delpeuch 2018-02-03 09:00:53 +00:00
parent c9395d564c
commit dc4815ba7b

View File

@ -76,7 +76,7 @@ public class SeparatorBasedImporter extends TabularImportingParserBase {
JSONUtilities.safePut(options, "guessCellValueTypes", false);
JSONUtilities.safePut(options, "processQuotes", true);
JSONUtilities.safePut(options, "quoteCharacter", CSVParser.DEFAULT_QUOTE_CHARACTER);
JSONUtilities.safePut(options, "quoteCharacter", String.valueOf(CSVParser.DEFAULT_QUOTE_CHARACTER));
return options;
}