File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
arduino-core/src/cc/arduino/contributions Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ private void parseIndex(File indexFile) throws IOException {
74
74
mapper .registerModule (new MrBeanModule ());
75
75
mapper .configure (DeserializationFeature .ACCEPT_SINGLE_VALUE_AS_ARRAY , true );
76
76
mapper .configure (DeserializationFeature .EAGER_DESERIALIZER_FETCH , true );
77
- mapper .configure (DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES , true );
77
+ mapper .configure (DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES , false );
78
78
index = mapper .readValue (indexIn , LibrariesIndex .class );
79
79
80
80
for (ContributedLibrary library : index .getLibraries ()) {
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ private void parseIndex(File indexFile) throws IOException {
98
98
mapper .registerModule (new MrBeanModule ());
99
99
mapper .configure (DeserializationFeature .ACCEPT_SINGLE_VALUE_AS_ARRAY , true );
100
100
mapper .configure (DeserializationFeature .EAGER_DESERIALIZER_FETCH , true );
101
- mapper .configure (DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES , true );
101
+ mapper .configure (DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES , false );
102
102
index = mapper .readValue (indexIn , ContributionsIndex .class );
103
103
}
104
104
You can’t perform that action at this time.
0 commit comments