| Index: tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_SVGElement.darttemplate b/tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| index c3ee68084aac18dabedd851d73f9c942eaff2ecf..61cf7f68357beb703d1fc9dd4c790e6d554b419f 100644
|
| --- a/tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| @@ -26,8 +26,7 @@ class _AttributeClassSet extends CssClassSet {
|
| }
|
|
|
| void writeClasses(Set s) {
|
| - List list = new List.from(s);
|
| - _element.attributes['class'] = Strings.join(list, ' ');
|
| + _element.attributes['class'] = s.join(' ');
|
| }
|
| }
|
|
|
|
|