Skip to content

Commit e8afd6f

Browse files
committed
Remove extra object
1 parent b9ca640 commit e8afd6f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

library/src-3.x/scala/quoted/package.scala

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@ package object quoted {
88

99
implicit object ExprOps {
1010
def (x: T) toExpr[T] given Liftable[T]: Expr[T] = the[Liftable[T]].toExpr(x)
11-
}
1211

13-
implicit object ListOfExprOps {
1412
def (list: List[Expr[T]]) toExprOfList[T] given Type[T]: Expr[List[T]] = list match {
15-
case x :: xs => '{ $x :: ${xs.toExprOfList} }
16-
case Nil => '{ Nil }
13+
case x :: xs => '{ $x :: ${xs.toExprOfList} }
14+
case Nil => '{ Nil }
1715
}
1816
}
1917

0 commit comments

Comments
 (0)