Skip to content

Commit 67f302d

Browse files
authored
Avoid deprecated zipped (#152)
As suggested in #151 (Fix implemented blindly from web UI only, CI passed on the fork)
1 parent fae83f8 commit 67f302d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cask/src-3/cask/router/Macros.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ object Macros {
261261
sigss: Seq[Seq[ArgSig[Any, _, _, Any]]]
262262
) => {
263263
val parsedArgss: Seq[Seq[Either[Seq[cask.router.Result.ParamError], Any]]] =
264-
(sigss, argss, ctxs).zipped.map { case (sigs, args, ctx) =>
264+
sigss.lazyZip(argss).lazyZip(ctxs).map { case (sigs, args, ctx) =>
265265
sigs.map{ case sig =>
266266
Runtime.makeReadCall(
267267
args,

0 commit comments

Comments
 (0)