Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin1/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadCym committed Jun 20, 2016
2 parents 47712e6 + 7dacd1d commit 3c97af4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
![demo](http://upload-images.jianshu.io/upload_images/972352-54bd17d3680a4cf9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
```
public class QuickAdapter extends BaseQuickAdapter<Status> {
public QuickAdapter(Context context) {
super(context, R.layout.tweet, DataServer.getSampleData());
public QuickAdapter() {
super(R.layout.tweet, DataServer.getSampleData());
}
@Override
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ dependencies {

```java
public class QuickAdapter extends BaseQuickAdapter<Status> {
public QuickAdapter(Context context) {
super(context, R.layout.tweet, DataServer.getSampleData());
public QuickAdapter() {
super(R.layout.tweet, DataServer.getSampleData());
}

@Override
Expand Down

0 comments on commit 3c97af4

Please sign in to comment.