Skip to content

Commit

Permalink
Endret type for å gjøre code-scanningen fornøyd
Browse files Browse the repository at this point in the history
  • Loading branch information
tendestad committed Oct 10, 2023
1 parent 115805c commit 7f4055f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private static List<Periode> finnMinst6MndUtenYtelse(List<Periode> beregningsper

private static void leggTilMånederMellom(List<Periode> beregningsperioder, LocalDate førsteDato, LocalDate sisteDato) {
long månederMellom = finnHeleMånederMellom(førsteDato, sisteDato);
for (int k = 1; k <= månederMellom; k++) {
for (long k = 1; k <= månederMellom; k++) {
LocalDate måned = førsteDato.plusMonths(k);
beregningsperioder.add(Periode.of(måned.withDayOfMonth(1), måned.withDayOfMonth(måned.lengthOfMonth())));
}
Expand Down

0 comments on commit 7f4055f

Please sign in to comment.