Skip to content

Commit

Permalink
Legg til named parameters for å unngå mixup i fremtiden
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusae committed Nov 4, 2024
1 parent 7fa3079 commit 0cb6ac2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
kotlin.code.style=official

# Plugin versions
# Plugin versions
kotlinVersion=2.0.0
kotlinterVersion=4.4.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ class FjernPaaminnelseRiver(
private fun slettOppgavePaaminnelser(forespoerselId: UUID) {
runCatching {
runBlocking {
agNotifikasjonKlient.slettOppgavePaaminnelserByEksternId(NotifikasjonTekst.MERKELAPP, forespoerselId.toString())
agNotifikasjonKlient.slettOppgavePaaminnelserByEksternId(
merkelapp = NotifikasjonTekst.MERKELAPP,
eksternId = forespoerselId.toString(),
)
}
}.onFailure {
when (it) {
Expand Down

0 comments on commit 0cb6ac2

Please sign in to comment.