Skip to content

Commit

Permalink
Changed access modifier from public to protected for:
Browse files Browse the repository at this point in the history
- List<Wrapper> items
- method `generateDateHeaders`
  • Loading branch information
Primoz committed Oct 11, 2018
1 parent bc4a218 commit e1b9332
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class MessagesListAdapter<MESSAGE extends IMessage>

protected static boolean isSelectionModeEnabled;

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

Expand Down Expand Up @@ -528,7 +528,7 @@ private void recountDateHeaders() {
}
}

public void generateDateHeaders(List<MESSAGE> messages) {
protected void generateDateHeaders(List<MESSAGE> messages) {
for (int i = 0; i < messages.size(); i++) {
MESSAGE message = messages.get(i);
this.items.add(new Wrapper<>(message));
Expand Down

0 comments on commit e1b9332

Please sign in to comment.