what-the-bank/sources/io/flutter/util/Preconditions.java

25 lines
511 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package io.flutter.util;
/* loaded from: classes6.dex */
public final class Preconditions {
private Preconditions() {
}
public static <T> T checkNotNull(T t) {
t.getClass();
return t;
}
public static void checkState(boolean z) {
if (!z) {
throw new IllegalStateException();
}
}
public static void checkState(boolean z, Object obj) {
if (!z) {
throw new IllegalStateException(String.valueOf(obj));
}
}
}