Join Slack
Powered by
<@U8WU17HH7> `String.format(source, args)` -> `...
# multiplatform
g
gildor
10/30/2018, 11:25 AM
@Leonid Popescu
String.format(source, args)
->
String.format(source, *args)
Java String.format uses vararg, so you should pass arguments as vararg, your current code passes array as first argument instead of passing it as varargs
👍 3
Open in Slack
Previous
Next