summaryrefslogtreecommitdiff
path: root/sources/scalac/Phase.java
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-12-08 15:31:38 +0000
committerpaltherr <paltherr@epfl.ch>2004-12-08 15:31:38 +0000
commita0a569dfb76080df049e2ca27c27d696c848f5f9 (patch)
treec139758f2631bba1dcf44026b1288dd3b1287538 /sources/scalac/Phase.java
parent1aa40dd9e33751be7fd1e25bbc178b3937f01b54 (diff)
downloadscala-a0a569dfb76080df049e2ca27c27d696c848f5f9.tar.gz
scala-a0a569dfb76080df049e2ca27c27d696c848f5f9.tar.bz2
scala-a0a569dfb76080df049e2ca27c27d696c848f5f9.zip
- Disabled WholeProgPhase
- Removed method Phase.apply(CompilationUnit[])
Diffstat (limited to 'sources/scalac/Phase.java')
-rw-r--r--sources/scalac/Phase.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/sources/scalac/Phase.java b/sources/scalac/Phase.java
index 88420302e9..5239562e9d 100644
--- a/sources/scalac/Phase.java
+++ b/sources/scalac/Phase.java
@@ -61,11 +61,6 @@ public abstract class Phase {
return tp;
}
- /** Applies this phase to the given compilation units. */
- public void apply(CompilationUnit[] units) {
- for (int i = 0; i < units.length; i++) apply(units[i]);
- }
-
/** Applies this phase to the given compilation unit. */
public abstract void apply(CompilationUnit unit);