I am using an ` interface BaseData<T> { ...
# android
a
I am using an
Copy code
interface BaseData<T> 
{
    void addData(List<T> addList);
}
When converted to Kotlin I am getting this error in a class in which it's implemented :
@Override public void addData(List<UserEntity> addList) {}
the error Both methods have same erasure, yet neither overrides the other