Skip to content

Commit

Permalink
Remove redundant with Checking
Browse files Browse the repository at this point in the history
`ReTyper` already extends `Typer` which extends `Checking`
  • Loading branch information
mbovel committed Oct 25, 2024
1 parent aa9115d commit fcfa6b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/src/dotty/tools/dotc/transform/TreeChecker.scala
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ object TreeChecker {
private[TreeChecker] def isValidJVMMethodName(name: Name): Boolean = name.toString.forall(isValidJVMMethodChar)


class Checker(phasesToCheck: Seq[Phase]) extends ReTyper with Checking {
class Checker(phasesToCheck: Seq[Phase]) extends ReTyper {
import ast.tpd.*

protected val nowDefinedSyms = util.HashSet[Symbol]()
Expand Down

0 comments on commit fcfa6b0

Please sign in to comment.