Skip to content

Commit 0e26ae0

Browse files
committed
Remove unnecessary self requirements
1 parent 761f2a2 commit 0e26ae0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/src/scala/quoted/internal/QuoteMatching.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package scala.quoted.internal
33
import scala.quoted.{QuoteContext, Expr, Type}
44

55
/** Part of the QuoteContext interface that needs to be implemented by the compiler but is not visible to users */
6-
trait QuoteMatching { self: QuoteContext & QuoteUnpickler =>
6+
trait QuoteMatching {
77

88
val ExprMatch: ExprMatchModule
99

library/src/scala/quoted/internal/QuoteUnpickler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package scala.quoted.internal
33
import scala.quoted.{QuoteContext, Expr, Type}
44

55
/** Part of the QuoteContext interface that needs to be implemented by the compiler but is not visible to users */
6-
trait QuoteUnpickler { self: QuoteContext & QuoteMatching =>
6+
trait QuoteUnpickler {
77

88
/** Unpickle `repr` which represents a pickled `Expr` tree,
99
* replacing splice nodes with `holes`

0 commit comments

Comments
 (0)