summaryrefslogtreecommitdiff
path: root/sources/scalac/ast/printer/TreePrinter.java
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-12-03 18:41:08 +0000
committerpaltherr <paltherr@epfl.ch>2004-12-03 18:41:08 +0000
commitebe2c4bf3c1662b3667ce61fed54bde84afda615 (patch)
treedbc7c91a9aaf3989966bbcea30b306869d8a69e7 /sources/scalac/ast/printer/TreePrinter.java
parent4fdab72617dbe4e049939e268df88f7a7efe5c06 (diff)
downloadscala-ebe2c4bf3c1662b3667ce61fed54bde84afda615.tar.gz
scala-ebe2c4bf3c1662b3667ce61fed54bde84afda615.tar.bz2
scala-ebe2c4bf3c1662b3667ce61fed54bde84afda615.zip
- Removed field units in class Global
Diffstat (limited to 'sources/scalac/ast/printer/TreePrinter.java')
-rw-r--r--sources/scalac/ast/printer/TreePrinter.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/sources/scalac/ast/printer/TreePrinter.java b/sources/scalac/ast/printer/TreePrinter.java
index ce6ae2bd18..a0884b0b2a 100644
--- a/sources/scalac/ast/printer/TreePrinter.java
+++ b/sources/scalac/ast/printer/TreePrinter.java
@@ -23,10 +23,6 @@ public interface TreePrinter {
public void end();
public void flush();
- public void print(Global global);
- public void print(CompilationUnit unit);
-
- public TreePrinter print(Tree tree);
- public TreePrinter print(String str);
- public TreePrinter println();
+ public void print(CompilationUnit[] units);
+ public void print(Tree tree);
}