Files
rr3-apk/decompiled-community/sources/com/vungle/ads/InternalError.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

34 lines
1.1 KiB
Java

package com.vungle.ads;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class InternalError extends VungleError {
public /* synthetic */ InternalError(int i, String str, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this(i, (i2 & 2) != 0 ? null : str);
}
public InternalError(int i, String str) {
super(Integer.valueOf(i), null, str, null, null, null, 58, null);
}
@Override // com.vungle.ads.VungleError
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!Intrinsics.areEqual(InternalError.class, obj != null ? obj.getClass() : null)) {
return false;
}
int code = getCode();
Intrinsics.checkNotNull(obj, "null cannot be cast to non-null type com.vungle.ads.InternalError");
return code == ((InternalError) obj).getCode();
}
@Override // com.vungle.ads.VungleError
public int hashCode() {
return InternalError.class.hashCode();
}
}