Skip to content

Commit 7a0230d

Browse files
Drop Tuple.Zip unreachable match type case
Addressing #19175
1 parent 3dfd762 commit 7a0230d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Diff for: library/src/scala/Tuple.scala

-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ object Tuple {
183183
case (h1 *: t1, h2 *: t2) => (h1, h2) *: Zip[t1, t2]
184184
case (EmptyTuple, _) => EmptyTuple
185185
case (_, EmptyTuple) => EmptyTuple
186-
case _ => Tuple
187186
}
188187

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

0 commit comments

Comments
 (0)