We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae49636 commit a6eb9abCopy full SHA for a6eb9ab
csv/src/test/java/com/fasterxml/jackson/dataformat/csv/deser/SkipEmptyLines191Test.java
@@ -71,8 +71,8 @@ public void testEmptyLines174() throws Exception
71
final String doc = sw.toString();
72
73
ObjectReader objectReader = MAPPER
74
- .enable(CsvParser.Feature.SKIP_EMPTY_LINES)
75
.readerFor(Row174.class)
+ .with(CsvParser.Feature.SKIP_EMPTY_LINES)
76
.with(MAPPER.schemaFor(Row174.class));
77
78
MappingIterator<Row174> iterator = objectReader.readValues(doc);
0 commit comments