mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Rename remaining occurrences of status to authorInfo
This commit is contained in:
@@ -18,8 +18,8 @@ class ForumItem extends ThreadItem {
|
||||
}
|
||||
|
||||
ForumItem(MessageId messageId, @Nullable MessageId parentId, String text,
|
||||
long timestamp, Author author, AuthorInfo status) {
|
||||
super(messageId, parentId, text, timestamp, author, status, true);
|
||||
long timestamp, Author author, AuthorInfo authorInfo) {
|
||||
super(messageId, parentId, text, timestamp, author, authorInfo, true);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -22,8 +22,8 @@ class GroupMessageItem extends ThreadItem {
|
||||
|
||||
private GroupMessageItem(MessageId messageId, GroupId groupId,
|
||||
@Nullable MessageId parentId, String text, long timestamp,
|
||||
Author author, AuthorInfo status, boolean isRead) {
|
||||
super(messageId, parentId, text, timestamp, author, status, isRead);
|
||||
Author author, AuthorInfo authorInfo, boolean isRead) {
|
||||
super(messageId, parentId, text, timestamp, author, authorInfo, isRead);
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ class MemberListItemHolder extends RecyclerView.ViewHolder {
|
||||
}
|
||||
|
||||
protected void bind(MemberListItem item) {
|
||||
// member name, avatar and status
|
||||
// member name, avatar and author info
|
||||
author.setAuthor(item.getMember());
|
||||
author.setAuthorInfo(item.getAuthorInfo());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user