Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow multiple matches with JsonPointerBasedFilter
JsonParser has not been working well with JSON Pointer for consequent multiple JSONs when used with Jackson 2.7.4+. For example of multiple JSONs in one stream: {"a": {"b": 1}} {"a": {"b": 2}} It happened because Jackson 2.7.3 or earlier ignored the `allowMultipleMatches` option. FasterXML/jackson-core#209 This commit fixes this problem by setting the option when used with Jackson 2.7.4+.
- Loading branch information