add CsvReaderSettings

Preparation to add more complex CSV parsing rules.
This commit is contained in:
2019-11-30 18:32:34 +01:00
parent 08b1be5334
commit ffe5ae8652
4 changed files with 37 additions and 6 deletions

View File

@@ -119,6 +119,7 @@ public class UniqueStringIntegerPairs {
String line;
while ((line = reader.readLine()) != null) {
// TODO use more efficient code to read the CSV -> improves startup time
final String[] tokens = line.split(Pattern.quote(SEPARATOR));
if (tokens.length == 2) {