Skip to content

Commit

Permalink
Backporting minor Java 9 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 3, 2018
1 parent b3c488b commit ff83469
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public StackTraceElement deserialize(JsonParser p, DeserializationContext ctxt)
moduleName = p.getText();
} else if ("moduleVersion".equals(propName)) {
moduleVersion = p.getText();
} else if ("declaringClass".equals(propName)) {
} else if ("declaringClass".equals(propName)
|| "format".equals(propName)) {
// 01-Nov-2017: [databind#1794] Not sure if we should but... let's prune it for now
;
} else {
Expand Down

0 comments on commit ff83469

Please sign in to comment.