package q;
import java.util.Objects;
/* JADX INFO: loaded from: classes.dex */
public abstract class c {
public static boolean a(Object obj, Object obj2) {
return Objects.equals(obj, obj2);
}
public static int b(Object... objArr) {
return Objects.hash(objArr);
}
public static Object c(Object obj, String str) {
if (obj != null) {
return obj;
}
throw new NullPointerException(str);
}
}
Download file