Compiler&plugin deprecations cleanup: string operations.

This commit is contained in:
Ilya Gorbunov
2015-06-25 23:46:18 +03:00
parent 35166f44ae
commit 6d4e48ab9a
10 changed files with 15 additions and 15 deletions
@@ -22,7 +22,7 @@ abstract class HtmlTemplate() : TextTemplate() {
}
else {
// TODO: escape values
"<$tagName ${allAttributes.map { t -> "${t.first}='${t.second.escapeHtml()}'" }.makeString(" ")}>"
"<$tagName ${allAttributes.map { t -> "${t.first}='${t.second.escapeHtml()}'" }.joinToString(" ")}>"
}
)
content()