mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
16 lines
579 B
Java
16 lines
579 B
Java
|
package androidx.transition;
|
||
|
|
||
|
import android.util.SparseArray;
|
||
|
import android.view.View;
|
||
|
import androidx.collection.ArrayMap;
|
||
|
import androidx.collection.LongSparseArray;
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
/* loaded from: classes2.dex */
|
||
|
public class TransitionValuesMaps {
|
||
|
final ArrayMap<View, TransitionValues> mViewValues = new ArrayMap<>();
|
||
|
final SparseArray<View> mIdValues = new SparseArray<>();
|
||
|
final LongSparseArray<View> mItemIdValues = new LongSparseArray<>();
|
||
|
final ArrayMap<String, View> mNameValues = new ArrayMap<>();
|
||
|
}
|