Deprecate join (use joinToString instead)

#KT-6909
This commit is contained in:
Ilya Gorbunov
2015-10-07 03:53:10 +03:00
parent f37e022b8e
commit 12d9beb3a4
12 changed files with 20 additions and 17 deletions
@@ -15,7 +15,7 @@ fun customerTemplate(customer: Customer) = """
<body>
<h1>Hello ${customer.name}</h1>
<ul>
${customer.products.map{ productSnippet(it) }.join("\n")}
${customer.products.map{ productSnippet(it) }.joinToString("\n")}
</ul>
<p>lets do some kool stuff</p>
</body>