New J2K: correctly convert Java String type to Kotlin String

This commit is contained in:
Ilya Kirillov
2019-06-10 09:51:37 +03:00
parent 0fc0f99acb
commit a2b832e5be
5 changed files with 36 additions and 16 deletions
@@ -86,8 +86,5 @@ internal class D : JavaClassDerivedFromKotlinClassWithProperties() {
return "a"
}
override var someVar2: String?
get() = super.someVar2
set(value) {}
override fun setSomeVar2(value: String?) {}
}