aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/transform/Memoize.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-12-14 15:56:00 +0100
committerMartin Odersky <odersky@gmail.com>2014-12-14 15:56:00 +0100
commitb7c196e38d6cc9bb9c2331a6d7507b258b30ce29 (patch)
tree686431ab34fc15f978897d0ecf22ff524ee77645 /src/dotty/tools/dotc/transform/Memoize.scala
parentcf3af0e0e75e8f905eafaa12c29b87b320f7e4b1 (diff)
downloaddotty-b7c196e38d6cc9bb9c2331a6d7507b258b30ce29.tar.gz
dotty-b7c196e38d6cc9bb9c2331a6d7507b258b30ce29.tar.bz2
dotty-b7c196e38d6cc9bb9c2331a6d7507b258b30ce29.zip
Remove fruitless overrides of treeTransformPhase
Now the default phase of treeTransformPhase is phase.next, we can remove all overrides that specify the same phase.
Diffstat (limited to 'src/dotty/tools/dotc/transform/Memoize.scala')
-rw-r--r--src/dotty/tools/dotc/transform/Memoize.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/transform/Memoize.scala b/src/dotty/tools/dotc/transform/Memoize.scala
index 17a84484a..439efa8b4 100644
--- a/src/dotty/tools/dotc/transform/Memoize.scala
+++ b/src/dotty/tools/dotc/transform/Memoize.scala
@@ -35,7 +35,6 @@ import Decorators._
import ast.tpd._
override def phaseName = "memoize"
- override def treeTransformPhase = thisTransform.next
/** Should to run after mixin so that fields get generated in the
* class that contains the concrete getter rather than the trait