Update: It seems like the primitive is always used...
# ksp
j
Update: It seems like the primitive is always used. I guess I’ll just have to do the mapping myself
y
be careful, it is not always
boolean
especially when it is implementing another interface. e.g. you might have:
Copy code
interface JavaInterface {
    void someBoolean(Boolean b)
}

class KotlinClass : JavaInterface {
    override fun someBoolean(b: Boolean)
}
actually "i think" it will genereate 2 methods in this case, not 100% sure
also, type parameters is another place to account for
j
lovely
thanks for the heads up