summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2003-07-16 11:12:55 +0000
committermichelou <michelou@epfl.ch>2003-07-16 11:12:55 +0000
commite00deae3e5e84f1f63b8693b64e25ed2ee62ae07 (patch)
tree8839463f635ccb025da65f33ea6e2a86f9b05ca5 /sources
parent8ddba4ddedd0e92745f05a856e3de8483da4f301 (diff)
downloadscala-e00deae3e5e84f1f63b8693b64e25ed2ee62ae07.tar.gz
scala-e00deae3e5e84f1f63b8693b64e25ed2ee62ae07.tar.bz2
scala-e00deae3e5e84f1f63b8693b64e25ed2ee62ae07.zip
*** empty log message ***
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/typechecker/RefCheck.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/sources/scalac/typechecker/RefCheck.java b/sources/scalac/typechecker/RefCheck.java
index 8c8f899abd..4a3a6379f9 100644
--- a/sources/scalac/typechecker/RefCheck.java
+++ b/sources/scalac/typechecker/RefCheck.java
@@ -903,12 +903,7 @@ public class RefCheck extends Transformer implements Modifiers, Kinds {
//System.out.println("name: "+name);
Scope.Entry e = scopes[level].lookupEntry(name);
-<<<<<<< RefCheck.java
- //System.out.println("sym: "+sym);
- if (sym == null) unit.error(tree.pos, "sym is null");
-=======
//System.out.println("sym: "+sym);
->>>>>>> 1.27
if (sym.isLocal() && sym == e.sym) {
int i = level;
while (scopes[i] != e.owner) i--;