Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
package com.baidu.cloud.videocache;
/* loaded from: classes.dex */
public final class t {
public static Object a(Object obj) {
if (obj != null) {
return obj;
}
throw new NullPointerException();
}
public static Object a(Object obj, String str) {
if (obj != null) {
return obj;
}
throw new NullPointerException(str);
}
static void a(boolean z) {
if (!z) {
throw new IllegalArgumentException();
}
}
static void a(boolean z, String str) {
if (!z) {
throw new IllegalArgumentException(str);
}
}
public static void a(Object... objArr) {
for (Object obj : objArr) {
if (obj == null) {
throw new NullPointerException();
}
}
}
}