Skip to content

Commit

Permalink
relaxed parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Aug 9, 2023
1 parent 4e5b4ba commit 244d6a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/myrobotlab/codec/CodecUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public class CodecUtils {
mapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);

// Make jackson behave such that unknown properties are ignored
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, true);
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

}

Expand Down

0 comments on commit 244d6a7

Please sign in to comment.