package y; import java.util.Objects; /* 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); } }