Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 429e2a8b authored by Pierre Barbier de Reuille's avatar Pierre Barbier de Reuille Committed by Android (Google) Code Review
Browse files

Merge "Test color mapping equivalent in O(n)" into sc-dev

parents 54580d72 6bb53351
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -909,7 +909,8 @@ public class AppWidgetHostView extends FrameLayout {
            return false;
        }
        for (int i = 0; i < oldColors.size(); i++) {
            if (oldColors.valueAt(i) != newColors.get(oldColors.keyAt(i))) {
            if (oldColors.keyAt(i) != newColors.keyAt(i)
                    || oldColors.valueAt(i) != newColors.valueAt(i)) {
                return false;
            }
        }