Loading libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java +1 −1 Original line number Diff line number Diff line Loading @@ -1772,7 +1772,7 @@ public class BubbleController implements ConfigurationChangeListener, if (groupKey == null) { return bubbleChildren; } for (Bubble bubble : mBubbleData.getActiveBubbles()) { for (Bubble bubble : mBubbleData.getBubbles()) { if (bubble.getGroupKey() != null && groupKey.equals(bubble.getGroupKey())) { bubbleChildren.add(bubble); } Loading libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleData.java +0 −5 Original line number Diff line number Diff line Loading @@ -339,11 +339,6 @@ public class BubbleData { return mOverflow; } /** Return a read-only current active bubble lists. */ public List<Bubble> getActiveBubbles() { return Collections.unmodifiableList(mBubbles); } public void setExpanded(boolean expanded) { setExpandedInternal(expanded); dispatchPendingChanges(); Loading Loading
libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java +1 −1 Original line number Diff line number Diff line Loading @@ -1772,7 +1772,7 @@ public class BubbleController implements ConfigurationChangeListener, if (groupKey == null) { return bubbleChildren; } for (Bubble bubble : mBubbleData.getActiveBubbles()) { for (Bubble bubble : mBubbleData.getBubbles()) { if (bubble.getGroupKey() != null && groupKey.equals(bubble.getGroupKey())) { bubbleChildren.add(bubble); } Loading
libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleData.java +0 −5 Original line number Diff line number Diff line Loading @@ -339,11 +339,6 @@ public class BubbleData { return mOverflow; } /** Return a read-only current active bubble lists. */ public List<Bubble> getActiveBubbles() { return Collections.unmodifiableList(mBubbles); } public void setExpanded(boolean expanded) { setExpandedInternal(expanded); dispatchPendingChanges(); Loading