Skip to content

Commit 53c202f

Browse files
hamzaremmalsjrd
andauthored
Update compiler/src/dotty/tools/dotc/typer/RefChecks.scala
Co-authored-by: Sébastien Doeraene <[email protected]>
1 parent 333c068 commit 53c202f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -654,9 +654,9 @@ object RefChecks {
654654

655655
val missingMethods = grouped.toList flatMap {
656656
case (name, syms) =>
657-
syms.filterConserve(! _.isSetter)
658-
.groupBy(_.signature) // Avoid duplication for similar definitions (#19731)
659-
.map(f => f._2.head) // _1: Closest undefined method to the scope
657+
syms.filterConserve(!_.isSetter)
658+
.groupBy(_.signature) // Avoid duplication for similar definitions (#19731)
659+
.map(f => f._2.head) // _1: Closest undefined method to the scope
660660
}
661661

662662
def stubImplementations: List[String] = {

0 commit comments

Comments
 (0)