Skip to content

Commit

Permalink
chore(cocoapods): Fix-up an unnecessary mapNotNull
Browse files Browse the repository at this point in the history
This is a fix-up for ed9ce11.

Signed-off-by: Frank Viernau <frank_viernau@epam.com>
  • Loading branch information
fviernau authored and sschuberth committed Jul 17, 2024
1 parent 9117279 commit 28c53b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ internal fun String.parseLockfile(): Lockfile {
}
}

val checkoutOptions = root.get("CHECKOUT OPTIONS")?.fields()?.asSequence()?.mapNotNull { (name, node) ->
val checkoutOptions = root.get("CHECKOUT OPTIONS")?.fields()?.asSequence()?.map { (name, node) ->
val checkoutOption = CheckoutOption(
git = node[":git"]?.textValue(),
commit = node[":commit"].textValue()
Expand Down

0 comments on commit 28c53b9

Please sign in to comment.