I'm struggling with an Inheritance issue: I inheri...
# announcements
d
I'm struggling with an Inheritance issue: I inherit a Java interface with
void onUpdateFinished(RecyclerView.Adapter adapter);
Intellij offers me implementation as
override fun onUpdateFinished(adapter: RecyclerView.Adapter<*>?)
but the compiler disagrees… I don't have any lint warning concerning the
override
keyword in kotlin class, but function is not called 😕