Skip to content

Commit e38541b

Browse files
committed
Remove debug println
1 parent c896a83 commit e38541b

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/dotty/tools/dotc/core/TypeApplications.scala

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -668,13 +668,7 @@ class TypeApplications(val self: Type) extends AnyVal {
668668
instTop(tp.ref)
669669
case tp =>
670670
inst.tyconIsHK = tp.isHK
671-
val res = inst(tp)
672-
tp match {
673-
case tp: WildcardType =>
674-
println(s"inst $tp --> $res")
675-
case _ =>
676-
}
677-
res
671+
inst(tp)
678672
}
679673

680674
def isLazy(tp: Type): Boolean = tp.strictDealias match {

0 commit comments

Comments
 (0)