-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
fix #4680 : Custom key deserialiser registered for Object.class is ignored on nested JSON
#4684
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
Merged
Merged
Changes from 11 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
f3d38b0
...
JooHyukKim e832d13
Improve test doc
JooHyukKim 06f8b83
Merge branch '2.18' into fix4680
cowtowncoder a1fe9cc
Add check if is default key-deserializer
JooHyukKim 9222ade
Improve validation to check if custom-key-deserializer is not null
JooHyukKim 6e04144
Merge branch '2.18' into fix4680
cowtowncoder 149180c
Merge branch '2.18' into fix4680
cowtowncoder 03b365a
Minor renaming, tweaks
cowtowncoder f91f0a3
Merge branch '2.18' into fix4680
cowtowncoder 8976fef
Remove dup test class
cowtowncoder e80b337
Minor streamlining
cowtowncoder 1f7dfbc
Add and cover at least 5 keys cases
JooHyukKim 874dd82
Update doc
JooHyukKim 39aa9a1
Merge branch '2.18' into fix4680
cowtowncoder 672c69e
Merge remote-tracking branch 'upstream/2.19' into fix4680
JooHyukKim 2792f28
Add version note
JooHyukKim 83af378
Add "since" to where needed
JooHyukKim c09b191
Merge branch '2.19' into fix4680
cowtowncoder 517edba
tiny tweaks
cowtowncoder ef0e18c
some last (?) tweaks
cowtowncoder 1a0cdbf
Add some JavaDoc
JooHyukKim 212bc64
Add comments
JooHyukKim 3c35bcd
Merge branch '2.19' into fix4680
cowtowncoder f58cdd6
Merge branch 'fix4680' of github.com:JooHyukKim/jackson-databind into…
cowtowncoder d48f5f6
Merge branch '2.19' into fix4680
cowtowncoder 2989044
Merge branch '2.19' into fix4680
cowtowncoder b32f234
Merge branch '2.19' into fix4680
JooHyukKim 95e7887
Merge branch '2.19' into fix4680
cowtowncoder cabc459
Merge branch '2.19' into fix4680
JooHyukKim c09e88c
Clean up
JooHyukKim abe4e17
Merge branch '2.19' into fix4680
cowtowncoder 9f99e87
Merge branch '2.19' into fix4680
cowtowncoder 498c354
Minor javadoc fix
cowtowncoder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JooHyukKim I think same check needed for 2 cases further down too?
(and test should check that first 5 keys per level get custom deserialized as well)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, seems like it. Will do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Applied ur review and did minor plummeting (with a new helper function) via 1f7dfbc. Thanks!