Use viewholder for populating contributions list (#2306)

* Use viewholder for populatiing contributions list

* Fix codacy issues

* Remove unused code
This commit is contained in:
Vivek Maskara 2019-01-30 15:36:15 +05:30 committed by neslihanturan
parent 2ba6ed622f
commit 35f1e84ff1
6 changed files with 187 additions and 123 deletions

View file

@ -0,0 +1,7 @@
package fr.free.nrw.commons.widget;
import android.content.Context;
public interface ViewHolder<T> {
void bindModel(Context context, T model);
}