Remove unused AccountInfoCache from GroupDetail

Change-Id: I212e9a4a26d21512e9b6a6a8a4766764e53bd0e5
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2017-02-06 11:03:18 +01:00
parent 687bd0cadd
commit 717214f46c
2 changed files with 0 additions and 6 deletions

View File

@@ -21,7 +21,6 @@ import com.google.gerrit.reviewdb.client.AccountGroupMember;
import java.util.List;
public class GroupDetail {
public AccountInfoCache accounts;
public AccountGroup group;
public List<AccountGroupMember> members;
public List<AccountGroupById> includes;
@@ -31,10 +30,6 @@ public class GroupDetail {
public GroupDetail() {
}
public void setAccounts(AccountInfoCache c) {
accounts = c;
}
public void setGroup(AccountGroup g) {
group = g;
}