Fix untyped Map in SuggestServiceImpl

Change-Id: Icf41f757e12822f4bfdbe41028fdee4d3436d263
Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce 2011-04-29 18:42:27 -07:00
parent 528c3de81f
commit 41e8bab1e2
1 changed files with 2 additions and 2 deletions

View File

@ -111,8 +111,8 @@ class SuggestServiceImpl extends BaseServiceImplementation implements
});
}
private void addSuggestion(Map map, Account account, AccountInfo info,
Boolean active) {
private void addSuggestion(Map<Account.Id, AccountInfo> map, Account account,
AccountInfo info, Boolean active) {
if (active == null || active == account.isActive()) {
map.put(account.getId(), info);
}