Skip to content

Commit 4dcfb7f

Browse files
committed
Remove debug print
1 parent 4a24f73 commit 4dcfb7f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

compiler/src/scala/quoted/runtime/impl/QuoteMatcher.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,14 +446,12 @@ class QuoteMatcher(debug: Boolean) {
446446
// only when they are empty bounds (<: Nothing :> Any)
447447
// to keep behavioral difference minimal
448448
case TypeBoundsTree(sclo, schi, scalias) =>
449-
println("trace: 19.1")
450449
pattern match
451450
case TypeBoundsTree(ptlo, pthi, ptalias) =>
452451
sclo =?= ptlo &&& schi =?= pthi &&& scalias =?= ptalias
453452
case _ => notMatched
454453

455454
case TypeDef(_, rhs1) =>
456-
println("trace: 19.2")
457455
pattern match
458456
case TypeDef(_, rhs2) => rhs1 =?= rhs2
459457
case _ => notMatched

0 commit comments

Comments
 (0)