File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed
src/main/java/com/fasterxml/jackson/databind Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -445,6 +445,10 @@ Tom Mack (tommack@github)
445
445
the requested value type
446
446
(2.7.4)
447
447
448
+ Nick Babcock (nickbabcock)
449
+ * Reported #1225: `JsonMappingException` should override getProcessor()
450
+ (2.7.5)
451
+
448
452
Artur Jonkisz (ajonkisz@github)
449
453
* Reported #960: `@JsonCreator` not working on a factory with no arguments for ae enum type
450
454
(2.8.0)
@@ -465,3 +469,4 @@ Lokesh Kumar (LokeshN@github)
465
469
(2.8.0)
466
470
* Reported #1217: `@JsonIgnoreProperties` on Pojo fields not working for deserialization
467
471
(2.8.0)
472
+
Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ Project: jackson-databind
34
34
(reported by Lokesh K)
35
35
#1221: Use `Throwable.addSuppressed()` directly and/or via try-with-resources
36
36
37
+ 2.7.5 (not yet released)
38
+
39
+ #1225: `JsonMappingException` should override getProcessor()
40
+ (reported by Nick B)
41
+
37
42
2.7.4 (29-Apr-2016)
38
43
39
44
#1122: Jackson 2.7 and Lombok: 'Conflicting/ambiguous property name definitions'
Original file line number Diff line number Diff line change @@ -454,6 +454,9 @@ public void prependPath(Reference r)
454
454
/**********************************************************
455
455
*/
456
456
457
+ @ Override // since 2.7.5
458
+ public Object getProcessor () { return _processor ; }
459
+
457
460
@ Override
458
461
public String getLocalizedMessage () {
459
462
return _buildMessage ();
You can’t perform that action at this time.
0 commit comments