Skip to content

Commit e799ba9

Browse files
committed
Remove println
1 parent f36e22b commit e799ba9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/dotty/tools/dotc/ast/NavigateAST.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,9 @@ object NavigateAST {
7070
}
7171
path
7272
}
73-
def singlePath(p: Positioned, path: List[Positioned]): List[Positioned] = {
74-
println(i"TEST ${p.envelope} for $pos, tree = $p")
73+
def singlePath(p: Positioned, path: List[Positioned]): List[Positioned] =
7574
if (p.envelope contains pos) childPath(p.productIterator, p :: path)
7675
else path
77-
}
7876
singlePath(from, Nil)
7977
}
8078
}

0 commit comments

Comments
 (0)