when converting from Java to Kotlin using intellij...
# random
a
when converting from Java to Kotlin using intelliji Converting
String[] result = "Foo, Bar".split(", ");
becomes
val result = "Foo, Bar".split(", ".toRegex()).dropLastWhile { it.isEmpty() }.toTypedArray()
I usually narrow it down to the same as java, but is that a bug? or is there anything I’m missing there?