GroupInfoCache: Remove unused 'want' method

Change-Id: I7fcc14d78217f6613fcd1a45e401238b22a5207b
This commit is contained in:
David Pursehouse
2016-05-12 13:52:20 +09:00
parent 02ed8835db
commit 31990ae32a

View File

@@ -48,13 +48,6 @@ public class GroupInfoCache {
}
}
/** Indicate one or more groups will be needed later on. */
public void want(final Iterable<AccountGroup.UUID> uuids) {
for (final AccountGroup.UUID uuid : uuids) {
want(uuid);
}
}
public GroupDescription.Basic get(final AccountGroup.UUID uuid) {
want(uuid);
return out.get(uuid);