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

This commit is contained in:
Pierre Barbier de Reuille
2021-05-14 08:49:28 +00:00
committed by Android (Google) Code Review

View File

@@ -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;
}
}