From 20ecc54ebd2913f1e6a8d156be9ae0f8ca874a37 Mon Sep 17 00:00:00 2001 From: Rajeev Kumar Date: Fri, 9 Jun 2017 15:03:56 -0700 Subject: Replace use of java.util.HashMap with android.util.ArrayMap in AnimationLayerSet. Change-Id: I8563d17d97ff36c2b07f73ecb73b0a355780355e Bug: 62466540 --- src/com/android/launcher3/anim/AnimationLayerSet.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/com/android/launcher3/anim/AnimationLayerSet.java b/src/com/android/launcher3/anim/AnimationLayerSet.java index 14bcd1718..f0b34587a 100644 --- a/src/com/android/launcher3/anim/AnimationLayerSet.java +++ b/src/com/android/launcher3/anim/AnimationLayerSet.java @@ -18,9 +18,8 @@ package com.android.launcher3.anim; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; +import android.util.ArrayMap; import android.view.View; - -import java.util.HashMap; import java.util.Iterator; import java.util.Map; @@ -29,14 +28,14 @@ import java.util.Map; */ public class AnimationLayerSet extends AnimatorListenerAdapter { - private final HashMap mViewsToLayerTypeMap; + private final ArrayMap mViewsToLayerTypeMap; public AnimationLayerSet() { - mViewsToLayerTypeMap = new HashMap<>(); + mViewsToLayerTypeMap = new ArrayMap<>(); } public AnimationLayerSet(View v) { - mViewsToLayerTypeMap = new HashMap<>(1); + mViewsToLayerTypeMap = new ArrayMap<>(1); addView(v); } -- cgit v1.2.3