Skip to content

Commit b65b3cb

Browse files
committed
Fix #1225
1 parent cf551ed commit b65b3cb

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

release-notes/CREDITS

+4
Original file line numberDiff line numberDiff line change
@@ -444,3 +444,7 @@ Tom Mack (tommack@github)
444444
* Reported #1208: treeToValue doesn't handle POJONodes that contain exactly
445445
the requested value type
446446
(2.7.4)
447+
448+
Nick Babcock (nickbabcock)
449+
* Reported #1225: `JsonMappingException` should override getProcessor()
450+
(2.7.5)

release-notes/VERSION

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Project: jackson-databind
44
=== Releases ===
55
------------------------------------------------------------------------
66

7+
2.7.5 (not yet released)
8+
9+
#1225: `JsonMappingException` should override getProcessor()
10+
(reported by Nick B)
11+
712
2.7.4 (29-Apr-2016)
813

914
#1122: Jackson 2.7 and Lombok: 'Conflicting/ambiguous property name definitions'

src/main/java/com/fasterxml/jackson/databind/JsonMappingException.java

+3
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,9 @@ public void prependPath(Reference r)
453453
/**********************************************************
454454
*/
455455

456+
@Override // since 2.7.5
457+
public Object getProcessor() { return _processor; }
458+
456459
@Override
457460
public String getLocalizedMessage() {
458461
return _buildMessage();

0 commit comments

Comments
 (0)