File tree 2 files changed +4
-3
lines changed
src/test/java/com/fasterxml/jackson/databind/deser/jdk
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ Project: jackson-databind
20
20
#4676 : Support other enum naming strategies than camelCase
21
21
(requested by @hajdamak)
22
22
(contributed by Lars B)
23
- #4680 : Custom key deserialiser registered for Object.class is ignored on nested JSON
23
+ #4680 : Custom key deserialiser registered for `Object.class ` in nested
24
+ Map object is ignored when Map key type not defined
24
25
(reported by @devdanylo)
25
26
(fix by Joo-Hyuk K)
26
27
#4773 : `SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS` should not apply to Maps
Original file line number Diff line number Diff line change 1
- package com .fasterxml .jackson .databind .deser ;
1
+ package com .fasterxml .jackson .databind .deser . jdk ;
2
2
3
3
import java .util .Map ;
4
4
14
14
import static org .junit .jupiter .api .Assertions .assertEquals ;
15
15
16
16
// [databind#4680] Custom key deserializer registered for `Object.class` is ignored on nested JSON
17
- public class CustomObjectKeyDeserializer4680Test
17
+ public class CustomMapKeyDeserializer4680Test
18
18
{
19
19
@ SuppressWarnings ("unchecked" )
20
20
@ Test
You can’t perform that action at this time.
0 commit comments