Hi, I am using Eclipse as a development environment , in the class UIPParser I am not able to resolve the error above even with all tested common-csv jar files, the lines are ;
if (isHasHeader()) {
records = CSVFormat.EXCEL.withDelimiter(getDelimiter()).withHeader().parse(in);
} else {
records = CSVFormat.EXCEL.withDelimiter(getDelimiter()).parse(in);
}
(51 and 53)