Skip to content

Commit

Permalink
make protected items field in MessagesListAdapter and DialogsListAdapter
Browse files Browse the repository at this point in the history
  • Loading branch information
bevzaanton committed Sep 25, 2018
1 parent 4ff552e commit 719b67a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
public class DialogsListAdapter<DIALOG extends IDialog>
extends RecyclerView.Adapter<DialogsListAdapter.BaseDialogViewHolder> {

private List<DIALOG> items = new ArrayList<>();
protected List<DIALOG> items = new ArrayList<>();
private int itemLayoutId;
private Class<? extends BaseDialogViewHolder> holderClass;
private ImageLoader imageLoader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ public class MessagesListAdapter<MESSAGE extends IMessage>

protected static boolean isSelectionModeEnabled;

protected List<Wrapper> items;
private MessageHolders holders;
private String senderId;
private List<Wrapper> items;

private int selectedItemsCount;
private SelectionListener selectionListener;
Expand Down

0 comments on commit 719b67a

Please sign in to comment.