I'd suggest to get rid of raw type in your Java co...
# language-proposals
e
I'd suggest to get rid of raw type in your Java code, then think about coverting it to Kotlin. In this piece
V extends BaseView
you are using generic
BaseView
as raw Java type. It is really bad style even by Java standards. What you really wanted to say with this constraint?