Skip to content

Commit f47b4fd

Browse files
committed
Merge branch '2.7'
Conflicts: release-notes/CREDITS release-notes/VERSION
2 parents f645a74 + b65b3cb commit f47b4fd

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

release-notes/CREDITS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,10 @@ Tom Mack (tommack@github)
445445
the requested value type
446446
(2.7.4)
447447

448+
Nick Babcock (nickbabcock)
449+
* Reported #1225: `JsonMappingException` should override getProcessor()
450+
(2.7.5)
451+
448452
Artur Jonkisz (ajonkisz@github)
449453
* Reported #960: `@JsonCreator` not working on a factory with no arguments for ae enum type
450454
(2.8.0)
@@ -465,3 +469,4 @@ Lokesh Kumar (LokeshN@github)
465469
(2.8.0)
466470
* Reported #1217: `@JsonIgnoreProperties` on Pojo fields not working for deserialization
467471
(2.8.0)
472+

release-notes/VERSION

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ Project: jackson-databind
3434
(reported by Lokesh K)
3535
#1221: Use `Throwable.addSuppressed()` directly and/or via try-with-resources
3636

37+
2.7.5 (not yet released)
38+
39+
#1225: `JsonMappingException` should override getProcessor()
40+
(reported by Nick B)
41+
3742
2.7.4 (29-Apr-2016)
3843

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,9 @@ public void prependPath(Reference r)
454454
/**********************************************************
455455
*/
456456

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

0 commit comments

Comments
 (0)