Closed Horus1337 closed 2 weeks ago
Please try at least 2.18 version and rewrite the issue, @Horus1337 2.6 version is ancient and no longer maintained. Thanks!
I committed 8f139afb437d3f5bab8bc35bae680cc9af59831e. I accidentally committed directly, had intended to create a branch and a PR. @cowtowncoder feel free to revert this commit.
@pjfanning That's fine in this case. I think I'll even backport it to 2.16/2.17/2.18.
Thank you for the quick fix. I am using the most recent version, with the ' Version Information since 2.6.0 ' I just meant it was introduced in that version
Search before asking
Describe the bug
In com.fasterxml.jackson.databind.deser.std.StdDelegatingDeserializer
is the method
The String format in there is wrong, there is a '+' instead of ',' so another Runtime Exception is thrown.
fixes this
Version Information
since 2.6.0
Reproduction
String.format ("Cannot update object of type %s (using deserializer for type %s)" +"EXAMPLE", "STRING")
Expected behavior
String.format ("Cannot update object of type %s (using deserializer for type %s)", "EXAMPLE", "STRING")
Additional context
No response