Skip to content

Commit

Permalink
Fixes FasterXML/jackson-databind#2038 by deserializing codec correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
243826 committed May 16, 2018
1 parent 6a0031b commit f29a147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/fasterxml/jackson/core/JsonFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public static int collectDefaults() {
*/
protected JsonFactory(JsonFactory src, ObjectCodec codec)
{
_objectCodec = null;
_objectCodec = codec;
_factoryFeatures = src._factoryFeatures;
_parserFeatures = src._parserFeatures;
_generatorFeatures = src._generatorFeatures;
Expand Down

0 comments on commit f29a147

Please sign in to comment.