package com.google.android.gms.common.util; import java.util.Arrays; import java.util.Collections; import java.util.List; /* loaded from: classes.dex */ public final class CollectionUtils { @Deprecated public static List a() { return Collections.emptyList(); } @Deprecated public static List a(T t) { return Collections.singletonList(t); } @Deprecated public static List a(T... tArr) { int length = tArr.length; if (length == 0) { return a(); } if (length != 1) { return Collections.unmodifiableList(Arrays.asList(tArr)); } return a(tArr[0]); } }