Skip to content

Commit

Permalink
Avoid deprecated zipped (#152)
Browse files Browse the repository at this point in the history
As suggested in #151

(Fix implemented blindly from web UI only, CI passed on the fork)
  • Loading branch information
OndrejSpanel authored Nov 27, 2024
1 parent fae83f8 commit 67f302d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cask/src-3/cask/router/Macros.scala
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ object Macros {
sigss: Seq[Seq[ArgSig[Any, _, _, Any]]]
) => {
val parsedArgss: Seq[Seq[Either[Seq[cask.router.Result.ParamError], Any]]] =
(sigss, argss, ctxs).zipped.map { case (sigs, args, ctx) =>
sigss.lazyZip(argss).lazyZip(ctxs).map { case (sigs, args, ctx) =>
sigs.map{ case sig =>
Runtime.makeReadCall(
args,
Expand Down

0 comments on commit 67f302d

Please sign in to comment.