Skip to content

Commit d8a1eed

Browse files
committed
Remove unreachable case
1 parent 86d1a8c commit d8a1eed

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

compiler/src/scala/quoted/runtime/impl/printers/SourceCode.scala

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,13 +1218,6 @@ object SourceCode {
12181218
this += "]"
12191219
printType(tpe.resType)
12201220

1221-
case tpe: TypeLambda =>
1222-
this += "["
1223-
printList(tpe.paramNames.zip(tpe.paramBounds), ", ",
1224-
(x: (String, TypeBounds)) => (this += x._1 += " ").printType(x._2))
1225-
this += "] => "
1226-
printType(tpe.resType)
1227-
12281221
case tpe@TypeBounds(lo, hi) =>
12291222
this += "_ >: "
12301223
printType(lo)

0 commit comments

Comments
 (0)