18 lines
427 B
Java
18 lines
427 B
Java
|
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());
|
||
|
}
|
||
|
}
|