Skip to content

Commit 3dbc18b

Browse files
Update compiler/src/dotty/tools/dotc/typer/Applications.scala
1 parent 5f00802 commit 3dbc18b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ trait Applications extends Compatibility { self: Typer with Dynamic =>
467467
}
468468
}
469469
val getterPrefix =
470-
if ((meth.is(Synthetic)) && meth.name == nme.apply) nme.CONSTRUCTOR else meth.name
470+
if (meth.is(Synthetic) && meth.name == nme.apply) nme.CONSTRUCTOR else meth.name
471471
def getterName = DefaultGetterName(getterPrefix, n)
472472
if (!meth.hasDefaultParams)
473473
EmptyTree

0 commit comments

Comments
 (0)