aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-04-22 17:33:12 +0200
committerMartin Odersky <odersky@gmail.com>2016-04-22 17:34:55 +0200
commit05bfe78c6f881884272e31cfd1eea993a1ad9f8a (patch)
tree27d453f5d5b7f67098b91095d80f32c6347dfd96 /src
parent89f9091c2d10aa23c5d6259694df104fc14c60f7 (diff)
downloaddotty-05bfe78c6f881884272e31cfd1eea993a1ad9f8a.tar.gz
dotty-05bfe78c6f881884272e31cfd1eea993a1ad9f8a.tar.bz2
dotty-05bfe78c6f881884272e31cfd1eea993a1ad9f8a.zip
Comment out debug println
Diffstat (limited to 'src')
-rw-r--r--src/dotty/tools/dotc/typer/Inferencing.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/typer/Inferencing.scala b/src/dotty/tools/dotc/typer/Inferencing.scala
index b3968f7c3..f880b647e 100644
--- a/src/dotty/tools/dotc/typer/Inferencing.scala
+++ b/src/dotty/tools/dotc/typer/Inferencing.scala
@@ -81,7 +81,7 @@ object Inferencing {
force.appliesTo(tvar) && {
val direction = instDirection(tvar.origin)
if (direction != 0) {
- if (direction > 0) println(s"inst $tvar dir = up")
+ //if (direction > 0) println(s"inst $tvar dir = up")
instantiate(tvar, direction < 0)
}
else {