/** Removes some apps from the list. */ public void removeApps(List<AppInfo> apps) { for (AppInfo app : apps) { mComponentToAppMap.remove(app.toComponentKey()); } onAppsUpdated(); }
/** Updates existing apps in the list */ public void updateApps(List<AppInfo> apps) { for (AppInfo app : apps) { mComponentToAppMap.put(app.toComponentKey(), app); } onAppsUpdated(); }