okkero
01/31/2017, 9:07 AMkotlin.collections.List
is covariant. So it makes sense that List<String>
in Kotlin translates to List<? extends String>
in Java. If you use MutableList<String>
in Kotlin, you'll get the desired result of List<String>
in Java