-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed #589 (by adding skipObject() and skipArray() methods) #590
Fixed #589 (by adding skipObject() and skipArray() methods) #590
Conversation
After another, related issue was brought up on Friday, had to revisit the original patch, debug new issue extensively, and find a better solution that resolves both the original unmapped-property-in-polymorphic-object and multiple-nested-polymorphic-objects bugs. The root cause for the latter was the same |
a387d9f
to
bbcf8f2
Compare
This PR fixes my issues #592 |
Please, rebase on the latest master. I made fixes for copyright issues, you are encountering here. (You might need to change some of the copyrights yourself, but only for files, you have changed) :-) |
1ec4fd9
to
3c78ff7
Compare
@Verdent , thank you for pointing this out. Updated copyright year to 2023 for the files I have touched with my commits, rebased, and pushed to the feature branch. Should be ok now. |
sorry for duplicating: |
A fix for a straightforward issue #589 discovered by @DXTR66. The fix is about letting
JsonStructureToParserAdapter
parser adapter implementskipObject()
andskipArray()
methods, so both can be used by the caller without a fear of raising an unsupported-method-exception.