File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ In your adapter file implement IVolxAdapter and return your data as a list of ob
16
16
17
17
``` java
18
18
19
- public class UsersOwnAdapter extends RecyclerView .Adapter<UsersOwnAdapter .ViewHolder > implements IVolxAdapter {
19
+ public class UsersOwnAdapter extends RecyclerView .Adapter<UsersOwnAdapter .ViewHolder > implements IVolxAdapter< UserModel > {
20
20
21
21
private List<UserModel > mDataset;
22
22
23
23
@Override
24
- public List<Object > getList () {
25
- return new ArrayList< Object > ( mDataset) ;
24
+ public List<UserModel > getList () {
25
+ return mDataset;
26
26
}
27
27
28
28
```
@@ -128,7 +128,7 @@ Add it in your root build.gradle at the end of repositories:
128
128
```groovy
129
129
130
130
dependencies {
131
- compile ' com.github.volsahin:volx-recyclerview-fast-scroll:v1.0.7 '
131
+ compile ' com.github.volsahin:volx-recyclerview-fast-scroll:v1.0.8 '
132
132
}
133
133
134
134
```
You can’t perform that action at this time.
0 commit comments