summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/Scope.java
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2003-06-11 18:10:24 +0000
committerMartin Odersky <odersky@gmail.com>2003-06-11 18:10:24 +0000
commitda93e36d8f40d0484ad45182054814df34cb1595 (patch)
treece7dae7d3d2896ed4489cc91506d0dbe5bcf4000 /sources/scalac/symtab/Scope.java
parent914d29f8895b39629b7f3887d7615cfab18dce57 (diff)
downloadscala-da93e36d8f40d0484ad45182054814df34cb1595.tar.gz
scala-da93e36d8f40d0484ad45182054814df34cb1595.tar.bz2
scala-da93e36d8f40d0484ad45182054814df34cb1595.zip
*** empty log message ***
Diffstat (limited to 'sources/scalac/symtab/Scope.java')
-rw-r--r--sources/scalac/symtab/Scope.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/symtab/Scope.java b/sources/scalac/symtab/Scope.java
index 6c707f43c4..64e06b61e6 100644
--- a/sources/scalac/symtab/Scope.java
+++ b/sources/scalac/symtab/Scope.java
@@ -183,7 +183,7 @@ public class Scope {
public Scope enterOrOverload(Symbol sym) {
Entry e = lookupEntry(sym.name);
- if (e.owner == this && (sym.flags & Modifiers.PRIVATE) == 0) {
+ if (e.owner == this/* && (sym.flags & Modifiers.PRIVATE) == 0*/) {
e.setSymbol(e.sym.overloadWith(sym));
return this;
} else {