Skip to content

Commit

Permalink
fix spotless check forgotten
Browse files Browse the repository at this point in the history
  • Loading branch information
Nic12345678 committed Jul 18, 2024
1 parent 7e23a78 commit 976528d
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@ private List<Wahltag> createWahltagList(String wahltagIDPrefix) {
}

private List<WahltagModel> createWahltagModelList(String wahltagIDPrefix) {
val wahltag1 = new WahltagModel(wahltagIDPrefix + "_identifikatorWahltag1", LocalDate.now().minusMonths(2), "beschreibungWahltag1", "nummerWahltag1");
val wahltag2 = new WahltagModel(wahltagIDPrefix + "_identifikatorWahltag2", LocalDate.now().minusMonths(1), "beschreibungWahltag2", "nummerWahltag2");
val wahltag3 = new WahltagModel(wahltagIDPrefix + "_identifikatorWahltag3", LocalDate.now().plusMonths(1), "beschreibungWahltag3", "nummerWahltag3");
val wahltag1 = new WahltagModel(wahltagIDPrefix + "_identifikatorWahltag1", LocalDate.now().minusMonths(2), "beschreibungWahltag1",
"nummerWahltag1");
val wahltag2 = new WahltagModel(wahltagIDPrefix + "_identifikatorWahltag2", LocalDate.now().minusMonths(1), "beschreibungWahltag2",
"nummerWahltag2");
val wahltag3 = new WahltagModel(wahltagIDPrefix + "_identifikatorWahltag3", LocalDate.now().plusMonths(1), "beschreibungWahltag3",
"nummerWahltag3");

return List.of(wahltag1, wahltag2, wahltag3);
}
Expand Down

0 comments on commit 976528d

Please sign in to comment.