summaryrefslogtreecommitdiff
path: root/sources/scalac/ast
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-01-08 18:51:33 +0000
committerpaltherr <paltherr@epfl.ch>2004-01-08 18:51:33 +0000
commitc5dcb8d01fe46c21695a12094206c24af8fe4d50 (patch)
tree30b05efa1a1b1ed484064bbe93390fea792817ac /sources/scalac/ast
parent5e749cea9d9d46d98c9150d43f67fc9de6f3810a (diff)
downloadscala-c5dcb8d01fe46c21695a12094206c24af8fe4d50.tar.gz
scala-c5dcb8d01fe46c21695a12094206c24af8fe4d50.tar.bz2
scala-c5dcb8d01fe46c21695a12094206c24af8fe4d50.zip
- Removed old methods Nil and Cons in TreeGen
Diffstat (limited to 'sources/scalac/ast')
-rw-r--r--sources/scalac/ast/TreeGen.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/sources/scalac/ast/TreeGen.java b/sources/scalac/ast/TreeGen.java
index d87115a77c..1c49620c0f 100644
--- a/sources/scalac/ast/TreeGen.java
+++ b/sources/scalac/ast/TreeGen.java
@@ -1264,16 +1264,6 @@ public class TreeGen implements Kinds, Modifiers, TypeTags {
}
}
- // refactoring duplicate code of LambdaLift and CodeFactory
-
- public Tree Nil(int pos) {
- return mkNil(pos);
- }
-
- public Tree Cons(int pos, Type elemtpe, Tree hd, Tree tl) {
- return mkNewCons(pos, elemtpe, hd, tl);
- }
-
// for insert debug printing code
public Tree Console_print(int pos, String str) {