mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
Small code cleanups.
This commit is contained in:
@@ -75,10 +75,8 @@ class RevealContactsControllerImpl extends DbControllerImpl
|
||||
@DatabaseExecutor
|
||||
private Collection<RevealableContactItem> getItems(GroupId g,
|
||||
Collection<ContactId> selection) throws DbException {
|
||||
Collection<GroupMember> members =
|
||||
groupManager.getMembers(g);
|
||||
Collection<Contact> contacts =
|
||||
contactManager.getContacts();
|
||||
Collection<GroupMember> members = groupManager.getMembers(g);
|
||||
Collection<Contact> contacts = contactManager.getContacts();
|
||||
Collection<RevealableContactItem> items =
|
||||
new ArrayList<>(members.size());
|
||||
for (GroupMember m : members) {
|
||||
|
||||
Reference in New Issue
Block a user