Skip to content

Commit bc7ee9c

Browse files
removed optional quotes
1 parent bbb9a02 commit bc7ee9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/datastax/cdm/CassandraDatasetManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ void install(String name) throws IOException, InterruptedException, GitAPIExcept
313313
CSVParser openCSV(String path) throws IOException {
314314
File f = new File(path);
315315
return CSVParser.parse(f, Charset.forName("UTF-8"),
316-
CSVFormat.RFC4180.withQuote(null));
316+
CSVFormat.RFC4180);
317317
}
318318

319319
String generateCQL(String table,

0 commit comments

Comments
 (0)