File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/main/java/com/fasterxml/jackson/databind Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ Project: jackson-databind
11
11
#1061: Problem with Object Id and Type Id as Wrapper Object (regression in 2.5.1)
12
12
#1073: Add try-catch around `java.sql` type serializers
13
13
(suggested by claudemt@github)
14
+ #1078: ObjectMapper.copy() still does not preserve _registeredModuleTypes
15
+ (reported by ajonkisz@github)
14
16
15
17
2.6.4 (07-Dec-2015)
16
18
Original file line number Diff line number Diff line change @@ -481,8 +481,8 @@ protected ObjectMapper(ObjectMapper src)
481
481
// Default serializer factory is stateless, can just assign
482
482
_serializerFactory = src ._serializerFactory ;
483
483
484
- // as per [databind#922], make sure to copy registered modules as appropriate
485
- Set <Object > reg = _registeredModuleTypes ;
484
+ // as per [databind#922], [databind#1078] make sure to copy registered modules as appropriate
485
+ Set <Object > reg = src . _registeredModuleTypes ;
486
486
if (reg == null ) {
487
487
_registeredModuleTypes = null ;
488
488
} else {
You can’t perform that action at this time.
0 commit comments