Skip to content

Commit

Permalink
Drop Tuple.Zip unreachable match type case
Browse files Browse the repository at this point in the history
Addressing scala#19175
  • Loading branch information
EugeneFlesselle committed Jul 29, 2024
1 parent 3dfd762 commit 7a0230d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion library/src/scala/Tuple.scala
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ object Tuple {
case (h1 *: t1, h2 *: t2) => (h1, h2) *: Zip[t1, t2]
case (EmptyTuple, _) => EmptyTuple
case (_, EmptyTuple) => EmptyTuple
case _ => Tuple
}

/** Converts a tuple `(F[T1], ..., F[Tn])` to `(T1, ... Tn)` */
Expand Down

0 comments on commit 7a0230d

Please sign in to comment.