Skip to content
Snippets Groups Projects
Commit 78ef02cc authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Add browser adapter get(position) method

parent 08be31a2
No related branches found
No related tags found
No related merge requests found
......@@ -122,6 +122,10 @@ public class BaseBrowserAdapter extends SortableAdapter<MediaLibraryItem, BaseBr
return mDataset.size();
}
public MediaLibraryItem get(int position) {
return mDataset.get(position);
}
public abstract class ViewHolder<T extends ViewDataBinding> extends RecyclerView.ViewHolder {
public T binding;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment