summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/Scope.java
diff options
context:
space:
mode:
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 {