J2K: Remove special conversion for String.format.

This commit is contained in:
Ilya Gorbunov
2016-02-03 06:03:09 +03:00
parent c243a2bdd5
commit 805410bb19
4 changed files with 2 additions and 29 deletions
@@ -101,8 +101,8 @@ internal class A {
3.14.toString()
Object().toString()
"Je ne mange pas %d jours".format(Locale.FRENCH, 6)
"Operation completed with %s".format("success")
String.format(Locale.FRENCH, "Je ne mange pas %d jours", 6)
String.format("Operation completed with %s", "success")
val chars = charArrayOf('a', 'b', 'c')
String(chars)