Skip to content

Commit 7866919

Browse files
committed
remove debugging println
1 parent a8e3cac commit 7866919

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,7 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
294294
}
295295

296296
convertToSelectFromType(tree.qualifier, tree.name) match {
297-
case Some(sftt) =>
298-
println(s"$tree converted to $sftt")
299-
typedSelectFromTypeTree(sftt, pt)
297+
case Some(sftt) => typedSelectFromTypeTree(sftt, pt)
300298
case _ => ctx.error(d"Could not convert $tree to a SelectFromTypeTree"); EmptyTree
301299
}
302300
}

0 commit comments

Comments
 (0)