Initial commit
This commit is contained in:
38
sources/com/baidu/cloud/videocache/t.java
Normal file
38
sources/com/baidu/cloud/videocache/t.java
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user