Add new CsvParser.Feature.ALLOW_COMMENTS
to replace deprecated JsonParser.Feature.ALLOW_YAML_COMMENTS
#108
Milestone
CsvParser.Feature.ALLOW_COMMENTS
to replace deprecated JsonParser.Feature.ALLOW_YAML_COMMENTS
#108
As of Jackson 2.9 CSV parser allows two methods to enable processing of "hash comments" within cells:
CsvSchema
has methods to enable this on per-column basisJsonParser.Feature.ALLOW_YAML_COMMENTS
is enabled, default is to enable for all columns (unless explicitly disabled via schema)Jackson 2.10 deprecates this feature (and adds JSON-specific replacement), so we should add a CSV-specific variant.
The text was updated successfully, but these errors were encountered: