summaryrefslogtreecommitdiff
path: root/sources/scalac/Global.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/Global.java')
-rw-r--r--sources/scalac/Global.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/sources/scalac/Global.java b/sources/scalac/Global.java
index 5c1b2f564a..7dccabfc60 100644
--- a/sources/scalac/Global.java
+++ b/sources/scalac/Global.java
@@ -391,14 +391,12 @@ public abstract class Global {
currentPhase = currentPhase.next;
start();
// System.out.println("*** " + currentPhase.descriptor.description() + " ***");
- // !!! new scalac.checkers.SymbolChecker(this).check();
currentPhase.apply(units);
stop(currentPhase.descriptor.taskDescription());
if (currentPhase.descriptor.hasPrintFlag()) print();
if (currentPhase.descriptor.hasGraphFlag())
currentPhase.graph(this);
- if (currentPhase.descriptor.hasCheckFlag())
- currentPhase.check(this);
+ // if (currentPhase.descriptor.hasCheckFlag()) // !!!
if (currentPhase == PHASE.PARSER.phase()) fix1();
if (currentPhase == PHASE.ANALYZER.phase()) fix2();
}