Skip to content

Commit 9b3bbeb

Browse files
committed
Silence a debug println
Currently, when running testCompilation i1286, the following always gets printed: error while transforming method splitAt error while transforming method tuple2ToZippedOps It seems that the associated error gets caught and handled, so we shouldn't print this message.
1 parent 6b9ee58 commit 9b3bbeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/core/Denotations.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ object Denotations {
791791
val currentPeriod = ctx.period
792792
val valid = myValidFor
793793

794-
def signalError() = println(s"error while transforming $this")
794+
def signalError() = () //println(s"error while transforming $this")
795795

796796
def assertNotPackage(d: SingleDenotation, transformer: DenotTransformer) = d match
797797
case d: ClassDenotation =>

0 commit comments

Comments
 (0)