summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorschinz <schinz@epfl.ch>2003-04-11 14:04:36 +0000
committerschinz <schinz@epfl.ch>2003-04-11 14:04:36 +0000
commit1bcbe1244ad7f50836b5f255cb5e2667d6b35b20 (patch)
tree798c02ca619ffe34f02418a189faf4a3dc47fddc /sources
parent009ca753a54bf55d67598831f2133f7b043cc160 (diff)
downloadscala-1bcbe1244ad7f50836b5f255cb5e2667d6b35b20.tar.gz
scala-1bcbe1244ad7f50836b5f255cb5e2667d6b35b20.tar.bz2
scala-1bcbe1244ad7f50836b5f255cb5e2667d6b35b20.zip
- as a temporary fix, changed definesSymbol in ...
- as a temporary fix, changed definesSymbol in ExtTemplate to always return false.
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/ast/Tree.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/ast/Tree.java b/sources/scalac/ast/Tree.java
index ae166080d0..7ed9f2da8a 100644
--- a/sources/scalac/ast/Tree.java
+++ b/sources/scalac/ast/Tree.java
@@ -903,7 +903,7 @@ public class Tree {
}
public boolean definesSymbol() {
- return true;
+ return false;
}
}