- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
15 lines
414 B
Java
15 lines
414 B
Java
package com.mbridge.msdk.foundation.tools;
|
|
|
|
import android.text.TextUtils;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class ap {
|
|
public static boolean a(String str) {
|
|
return str == null || TextUtils.isEmpty(str.trim()) || "null".equals(str);
|
|
}
|
|
|
|
public static boolean b(String str) {
|
|
return (str == null || TextUtils.isEmpty(str.trim()) || "null".equals(str)) ? false : true;
|
|
}
|
|
}
|