Skip to content

Commit 37128e4

Browse files
committed
Remove debug statements.
1 parent 44d6f10 commit 37128e4

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

compiler/src/dotty/tools/dotc/ast/Trees.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ object Trees {
6363

6464
private def nxId = {
6565
nextId += 1
66-
if ((nextId == 94) && (nextId < 170)) {
67-
println("dssds")
68-
}
6966
//assert(nextId != 199, this)
7067
nextId
7168

compiler/src/dotty/tools/dotc/typer/TypeAssigner.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,6 @@ trait TypeAssigner {
211211
/** The type of a selection with `name` of a tree with type `site`.
212212
*/
213213
def selectionType(site: Type, name: Name, pos: Position)(implicit ctx: Context): Type = {
214-
if (name.toString == "specializedFor")
215-
println("bugaga")
216214
val mbr = site.member(name)
217215
if (reallyExists(mbr)) site.select(name, mbr)
218216
else if (site.derivesFrom(defn.DynamicClass) && !Dynamic.isDynamicMethod(name)) {

0 commit comments

Comments
 (0)