Skip to content

Commit

Permalink
Trenger ikke dobbel optional sjekk
Browse files Browse the repository at this point in the history
  • Loading branch information
emilps committed Dec 4, 2024
1 parent 8fb9267 commit 68b0f98
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ object UtlandMapper {
)

private fun mapInnflytting(
innflytting: PdlInnflyttingTilNorge?,
innflytting: PdlInnflyttingTilNorge,
bostedsadresse: List<PdlBostedsadresse>?,
): InnflyttingTilNorge {
val gyldighetsdato: LocalDate? = innflytting?.folkeregistermetadata?.gyldighetstidspunkt?.toLocalDate()
val ajourholdsdato: LocalDate? = innflytting?.folkeregistermetadata?.ajourholdstidspunkt?.toLocalDate()
val gyldighetsdato: LocalDate? = innflytting.folkeregistermetadata?.gyldighetstidspunkt?.toLocalDate()
val ajourholdsdato: LocalDate? = innflytting.folkeregistermetadata?.ajourholdstidspunkt?.toLocalDate()

val innvandretDato =
if (gyldighetsdato != null) {
Expand All @@ -50,7 +50,7 @@ object UtlandMapper {
}

return InnflyttingTilNorge(
fraflyttingsland = innflytting?.fraflyttingsland,
fraflyttingsland = innflytting.fraflyttingsland,
dato = innvandretDato,
gyldighetsdato = gyldighetsdato,
ajourholdsdato = ajourholdsdato,
Expand Down

0 comments on commit 68b0f98

Please sign in to comment.