Skip to content

Commit

Permalink
spotless korrektur
Browse files Browse the repository at this point in the history
  • Loading branch information
Nic12345678 committed Aug 20, 2024
1 parent b63c0f7 commit 62a6d7b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,9 @@ void dataIsLoadedFromRepoIfPresentAndNotFromRemoteClient() {

private List<Wahlbezirk> buildWahlbezirEntitiesFromModels(List<WahlbezirkModel> remoteSetWahlbezirkeModels) {
List<Wahlbezirk> remoteList = new ArrayList<>();
remoteSetWahlbezirkeModels.forEach((wbModel) -> remoteList.add(new Wahlbezirk(wbModel.wahlbezirkID(), wbModel.wahltag(), wbModel.nummer(), WahlbezirkArt.valueOf(wbModel.wahlbezirkart().name()),
wbModel.wahlnummer(), wbModel.wahlID())));
remoteSetWahlbezirkeModels.forEach((wbModel) -> remoteList
.add(new Wahlbezirk(wbModel.wahlbezirkID(), wbModel.wahltag(), wbModel.nummer(), WahlbezirkArt.valueOf(wbModel.wahlbezirkart().name()),
wbModel.wahlnummer(), wbModel.wahlID())));
return remoteList;
}

Expand Down

0 comments on commit 62a6d7b

Please sign in to comment.