Rename remaining occurrences of status to authorInfo

This commit is contained in:
Torsten Grote
2018-10-30 13:40:04 -03:00
parent baf64e1129
commit 6c5e8ce4cf
4 changed files with 7 additions and 7 deletions

View File

@@ -19,10 +19,10 @@ public class GroupMember {
private final ContactId contactId;
private final Visibility visibility;
public GroupMember(Author author, AuthorInfo status, boolean isCreator,
public GroupMember(Author author, AuthorInfo authorInfo, boolean isCreator,
@Nullable ContactId contactId, Visibility visibility) {
this.author = author;
this.authorInfo = status;
this.authorInfo = authorInfo;
this.isCreator = isCreator;
this.contactId = contactId;
this.visibility = visibility;