File tree 3 files changed +12
-0
lines changed
src/main/java/com/fasterxml/jackson/databind
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -444,3 +444,7 @@ Tom Mack (tommack@github)
444
444
* Reported #1208: treeToValue doesn't handle POJONodes that contain exactly
445
445
the requested value type
446
446
(2.7.4)
447
+
448
+ Nick Babcock (nickbabcock)
449
+ * Reported #1225: `JsonMappingException` should override getProcessor()
450
+ (2.7.5)
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ Project: jackson-databind
4
4
=== Releases ===
5
5
------------------------------------------------------------------------
6
6
7
+ 2.7.5 (not yet released)
8
+
9
+ #1225: `JsonMappingException` should override getProcessor()
10
+ (reported by Nick B)
11
+
7
12
2.7.4 (29-Apr-2016)
8
13
9
14
#1122: Jackson 2.7 and Lombok: 'Conflicting/ambiguous property name definitions'
Original file line number Diff line number Diff line change @@ -453,6 +453,9 @@ public void prependPath(Reference r)
453
453
/**********************************************************
454
454
*/
455
455
456
+ @ Override // since 2.7.5
457
+ public Object getProcessor () { return _processor ; }
458
+
456
459
@ Override
457
460
public String getLocalizedMessage () {
458
461
return _buildMessage ();
You can’t perform that action at this time.
0 commit comments