summaryrefslogtreecommitdiff
path: root/sources/scalac/Phase.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/Phase.java')
-rw-r--r--sources/scalac/Phase.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/sources/scalac/Phase.java b/sources/scalac/Phase.java
index 7d9c785a13..25b046743a 100644
--- a/sources/scalac/Phase.java
+++ b/sources/scalac/Phase.java
@@ -65,17 +65,6 @@ public abstract class Phase {
/** Applies this phase to the given compilation units. */
public abstract void apply(CompilationUnit[] units);
- /** Graphs all compilation units. */
- public void graph(Global global) {
- for (int i = 0; i < global.units.length; i++) graph(global.units[i]);
- }
-
- /** Graphs the result of this phase for the given compilation unit. */
- public void graph(CompilationUnit unit) {
- // !!! new scala.compiler.gdl.TreePrinter().printInFile(
- // !!! unit, unit.source + "-" + name() + ".gdl");
- }
-
/** Returns the name of this phase. */
public final String toString() {
return descriptor.name();