File tree 2 files changed +7
-0
lines changed
src/main/java/com/fasterxml/jackson/databind/type
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Project: jackson-databind
6
6
7
7
2.9.9.1 (03 -Jul-2019 )
8
8
9
+ #2331 : `JsonMappingException` through nested getter with generic wildcard return type
9
10
#2334 : Block one more gadget type (CVE-2019 -12384 )
10
11
#2341 : Block one more gadget type (CVE-2019 -12814 )
11
12
#2374 : `ObjectMapper. getRegisteredModuleIds()` throws NPE if no modules registered
Original file line number Diff line number Diff line change @@ -36,6 +36,12 @@ public JavaType getSuperClass() {
36
36
37
37
public JavaType getSelfReferencedType () { return _referencedType ; }
38
38
39
+ // 23-Jul-2019, tatu: [databind#2331] Need to also delegate this...
40
+ @ Override
41
+ public TypeBindings getBindings () {
42
+ return _referencedType .getBindings ();
43
+ }
44
+
39
45
@ Override
40
46
public StringBuilder getGenericSignature (StringBuilder sb ) {
41
47
return _referencedType .getGenericSignature (sb );
You can’t perform that action at this time.
0 commit comments