mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
clean-up migrated back to collect to list for lower v
This commit is contained in:
@@ -1516,7 +1516,7 @@ public class BubbleController implements ConfigurationChangeListener,
|
||||
}
|
||||
mOverflowDataLoadNeeded = false;
|
||||
List<UserInfo> users = mUserManager.getAliveUsers();
|
||||
List<Integer> userIds = users.stream().map(userInfo -> userInfo.id).toList();
|
||||
List<Integer> userIds = users.stream().map(userInfo -> userInfo.id).collect(Collectors.toList());
|
||||
mDataRepository.loadBubbles(mCurrentUserId, userIds, (bubbles) -> {
|
||||
bubbles.forEach(bubble -> {
|
||||
if (mBubbleData.hasAnyBubbleWithKey(bubble.getKey())) {
|
||||
|
||||
Reference in New Issue
Block a user