I am trying to extend a Java Class in Kotlin and i...
# announcements
a
I am trying to extend a Java Class in Kotlin and it shows me a compilation error for
Inherited platform declaration clash
for
fun createCell()
. I am not extending an abstract class and my class doesn't override the method. Basically, the class definition is just this:
Copy code
class MyTableRowSkin<S>(val tableRow: TableRow<S>) : TableRowSkin<S>(tableRow) {

}
TableRowSkin
overrides
fun createCell
by extending abstract class
TableRowSkinBase
(where the method is abstract).