Loading packages/SystemUI/animation/src/com/android/systemui/animation/GhostedViewTransitionAnimatorController.kt +1 −1 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ constructor( val views = LinkedList<View>().apply { add(view) } while (views.isNotEmpty()) { val v = views.removeFirst() val v = views.removeAt(0) if (v.background != null) { return v.background } Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/ColorUpdateLogger.kt +1 −1 Original line number Diff line number Diff line Loading @@ -60,7 +60,7 @@ constructor( val didAppend = frames.lastOrNull()?.tryAddTrigger(event) == true if (!didAppend) { frames.add(Frame(event)) if (frames.size > maxFrames) frames.removeFirst() if (frames.size > maxFrames) frames.removeAt(0) } } Loading Loading
packages/SystemUI/animation/src/com/android/systemui/animation/GhostedViewTransitionAnimatorController.kt +1 −1 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ constructor( val views = LinkedList<View>().apply { add(view) } while (views.isNotEmpty()) { val v = views.removeFirst() val v = views.removeAt(0) if (v.background != null) { return v.background } Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/ColorUpdateLogger.kt +1 −1 Original line number Diff line number Diff line Loading @@ -60,7 +60,7 @@ constructor( val didAppend = frames.lastOrNull()?.tryAddTrigger(event) == true if (!didAppend) { frames.add(Frame(event)) if (frames.size > maxFrames) frames.removeFirst() if (frames.size > maxFrames) frames.removeAt(0) } } Loading