Skip to content

Commit 25049c3

Browse files
olhotakDarkDimius
authored andcommitted
remove debugging println
1 parent a49ccd0 commit 25049c3

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
@@ -303,9 +303,7 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
303303
}
304304

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

0 commit comments

Comments
 (0)