Skip to content

Commit d614d0b

Browse files
committed
Remove debug comment
1 parent 545dd69 commit d614d0b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3556,10 +3556,7 @@ class Typer(@constructorOnly nestingLevel: Int = 0) extends Namer
35563556
def typedTuple(tree: untpd.Tuple, pt: Type)(using Context): Tree =
35573557
val tree1 = desugar.tuple(tree, pt).withAttachmentsFrom(tree)
35583558
checkDeprecatedAssignmentSyntax(tree)
3559-
if tree1 ne tree then
3560-
val t = typed(tree1, pt)
3561-
// println(i"typedTuple: ${t} , ${t.tpe}")
3562-
t
3559+
if tree1 ne tree then typed(tree1, pt)
35633560
else
35643561
val arity = tree.trees.length
35653562
val pts = pt.stripNamedTuple.tupleElementTypes match

0 commit comments

Comments
 (0)