Skip to content

Commit

Permalink
fix #50 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadCym committed Jun 2, 2016
1 parent c7641ca commit bccdb4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public void onClick(View v) {
* @param data A new list is created out of this one to avoid mutable list
*/
public BaseQuickAdapter(Context context, int layoutResId, List<T> data) {
this.mData = data == null ? new ArrayList<T>() : new ArrayList<T>(data);
this.mData = data == null ? new ArrayList<T>() : data;
this.mContext = context;
this.mLayoutInflater = LayoutInflater.from(context);
if (layoutResId != 0) {
Expand Down

0 comments on commit bccdb4e

Please sign in to comment.