Skip to content

Commit

Permalink
change type of local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
boal committed Feb 25, 2025
1 parent b9046f3 commit c03ed1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected List<UnauffaelligerTag> loadUnauffaelligeTageForEachMessstelle() {
final var lastUnauffaelligerTag = unaufaelligerTag
.map(unauffaelligerTag -> unauffaelligerTag.getKalendertag().getDatum().plusDays(1))
.orElse(EARLIEST_DAY);
final LocalDate yesterday = LocalDate.now().minusDays(1);
final var yesterday = LocalDate.now().minusDays(1);
final var unauffaelligeTage = Objects
.requireNonNull(messstelleApi.getUnauffaelligeTageForEachMessstelleWithHttpInfo(lastUnauffaelligerTag, yesterday).block().getBody());
return unauffaelligeTage
Expand Down

0 comments on commit c03ed1f

Please sign in to comment.