summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Typers.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Typers.scala b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
index 2132ddc7d3..031012aee2 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Typers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
@@ -1162,11 +1162,11 @@ trait Typers requires Analyzer {
if (!attrError) {
val attributed =
if (defn.symbol.isModule) defn.symbol.moduleClass else defn.symbol
- if (attributed.attributes.isEmpty) { // Nik: this does not work under resident!
+ if (!attrInfos.isEmpty) {
attributed.attributes = attrInfos
- defn.mods setAttr List();
}
}
+ defn.mods setAttr List();
}