Skip to content

Commit 18cfc59

Browse files
committed
remove debugging println
1 parent 9164e1f commit 18cfc59

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/dotty/tools/dotc/typer/Typer.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,7 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
302302
}
303303

304304
convertToSelectFromType(tree.qualifier, tree.name) match {
305-
case Some(sftt) =>
306-
println(s"$tree converted to $sftt")
307-
typedSelectFromTypeTree(sftt, pt)
305+
case Some(sftt) => typedSelectFromTypeTree(sftt, pt)
308306
case _ => ctx.error(d"Could not convert $tree to a SelectFromTypeTree"); EmptyTree
309307
}
310308
}

0 commit comments

Comments
 (0)