- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
38 lines
912 B
Java
38 lines
912 B
Java
package com.applovin.impl;
|
|
|
|
import android.os.Looper;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class q6 {
|
|
private static final Thread a = Looper.getMainLooper().getThread();
|
|
|
|
public static void a(Throwable th) {
|
|
}
|
|
|
|
public static void a(Throwable th, String str, Object... objArr) {
|
|
}
|
|
|
|
public static boolean a(boolean z) {
|
|
return a(z, "Assertion failed", new Object[0]);
|
|
}
|
|
|
|
public static boolean a(boolean z, String str, Object... objArr) {
|
|
if (!z) {
|
|
a(str, objArr);
|
|
}
|
|
return z;
|
|
}
|
|
|
|
public static boolean a(Object obj) {
|
|
return a(obj, "Null value not expected", new Object[0]);
|
|
}
|
|
|
|
public static boolean a(Object obj, String str, Object... objArr) {
|
|
return a(obj != null, str, objArr);
|
|
}
|
|
|
|
public static void a(String str, Object... objArr) {
|
|
a((Throwable) null, str, objArr);
|
|
}
|
|
}
|