Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
volsahin authored Aug 8, 2018
1 parent dceac99 commit a01053f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ In your adapter file implement IVolxAdapter and return your data as a list of ob

```java

public class UsersOwnAdapter extends RecyclerView.Adapter<UsersOwnAdapter.ViewHolder> implements IVolxAdapter {
public class UsersOwnAdapter extends RecyclerView.Adapter<UsersOwnAdapter.ViewHolder> implements IVolxAdapter<UserModel> {

private List<UserModel> mDataset;

@Override
public List<Object> getList() {
return new ArrayList<Object>(mDataset);
public List<UserModel> getList() {
return mDataset;
}

```
Expand Down Expand Up @@ -128,7 +128,7 @@ Add it in your root build.gradle at the end of repositories:
```groovy

dependencies {
compile 'com.github.volsahin:volx-recyclerview-fast-scroll:v1.0.7'
compile 'com.github.volsahin:volx-recyclerview-fast-scroll:v1.0.8'
}

```
Expand Down

0 comments on commit a01053f

Please sign in to comment.