File tree 2 files changed +4
-0
lines changed
src/main/java/com/fasterxml/jackson/databind
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ Project: jackson-databind
17
17
(reported by Ludevik@github)
18
18
#684: FAIL_ON_NUMBERS_FOR_ENUMS does not fail when integer value is quoted
19
19
(reported by kllp@github)
20
+ #696: Copy constructor does not preserve `_injectableValues`
21
+ (reported by Charles A)
20
22
- Add a work-around in `ISO8601DateFormat` to allow omission of ':' from timezone
21
23
- Bit more work to complete #633
22
24
Original file line number Diff line number Diff line change @@ -412,6 +412,8 @@ protected ObjectMapper(ObjectMapper src)
412
412
_subtypeResolver = src ._subtypeResolver ;
413
413
_rootNames = new RootNameLookup ();
414
414
_typeFactory = src ._typeFactory ;
415
+ _injectableValues = src ._injectableValues ;
416
+
415
417
HashMap <ClassKey ,Class <?>> mixins = new HashMap <ClassKey ,Class <?>>(src ._mixInAnnotations );
416
418
_mixInAnnotations = mixins ;
417
419
_serializationConfig = new SerializationConfig (src ._serializationConfig , mixins );
You can’t perform that action at this time.
0 commit comments