File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
data/core/src/main/java/de/twonirwana/infinity/db Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public class DataLoader {
5555 private static final String SECTORIAL_FILE_FORMAT = "%d-%s.json" ;
5656 private static final String ARCHIVE_FOLDER = "archive" ;
5757 private final static ObjectMapper objectMapper = JsonMapper .builder ()
58- .changeDefaultNullHandling (_ -> JsonSetter .Value .forContentNulls (Nulls .SKIP ))
58+ .changeDefaultNullHandling (ignore -> JsonSetter .Value .forContentNulls (Nulls .SKIP ))
5959 .build ();
6060 private final Map <Sectorial , List <UnitOption >> sectorialUnitOptions ;
6161 private final Map <Sectorial , FireteamChart > sectorialFireteamCharts ;
@@ -299,7 +299,7 @@ private static SectorialList deserializeSectorialList(Path path) {
299299 sm .addDeserializer (SpecopsNestedItem .class , new SpecopsNestedItemDeserializer ());
300300
301301 JsonMapper om = JsonMapper .builder ()
302- .changeDefaultNullHandling (_ -> JsonSetter .Value .forContentNulls (Nulls .SKIP ))
302+ .changeDefaultNullHandling (ignore -> JsonSetter .Value .forContentNulls (Nulls .SKIP ))
303303 .addModule (sm )
304304 .build ();
305305
You can’t perform that action at this time.
0 commit comments