Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
filter using keys instead of value
Browse files Browse the repository at this point in the history
  • Loading branch information
Axelen123 committed Aug 3, 2023
1 parent e51c3fd commit 91484b7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ class PatchBundleRepository(
directoryOf(bundle.uid).deleteRecursively()

_sources.update {
it.filterValues { value ->
value.uid != bundle.uid
it.filterKeys { key ->
key != bundle.uid
}
}
}
Expand Down

0 comments on commit 91484b7

Please sign in to comment.