what-the-bank/sources/com/huawei/hms/hwid/ap.java

18 lines
427 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.huawei.hms.hwid;
import java.util.Collection;
/* loaded from: classes2.dex */
public class ap {
public static Boolean a(Collection collection) {
if (collection == null || collection.size() == 0) {
return Boolean.TRUE;
}
return Boolean.FALSE;
}
public static Boolean b(Collection collection) {
return Boolean.valueOf(!a(collection).booleanValue());
}
}