summaryrefslogtreecommitdiff
path: root/src/library/scala/xml/PrefixedAttribute.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/xml/PrefixedAttribute.scala')
-rw-r--r--src/library/scala/xml/PrefixedAttribute.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/xml/PrefixedAttribute.scala b/src/library/scala/xml/PrefixedAttribute.scala
index 13ed201634..7922999dfd 100644
--- a/src/library/scala/xml/PrefixedAttribute.scala
+++ b/src/library/scala/xml/PrefixedAttribute.scala
@@ -81,7 +81,7 @@ extends Attribute
sb.append(key)
sb.append('=')
val sb2 = new StringBuilder()
- for (c <- value) Utility.toXML(c, TopScope, sb2, true)
+ Utility.sequenceToXML(value, TopScope, sb2, true)
Utility.appendQuoted(sb2.toString(), sb)
}