alouanemed
08/09/2017, 8:07 PMinterface 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