- 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
66 lines
2.0 KiB
Java
66 lines
2.0 KiB
Java
package com.google.android.gms.internal.ads;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import androidx.annotation.FloatRange;
|
|
import androidx.annotation.Nullable;
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class zzet implements zzax {
|
|
public static final Parcelable.Creator<zzet> CREATOR = new zzer();
|
|
public final float zza;
|
|
public final float zzb;
|
|
|
|
public zzet(@FloatRange(from = -90.0d, to = 90.0d) float f, @FloatRange(from = -180.0d, to = 180.0d) float f2) {
|
|
boolean z = false;
|
|
if (f >= -90.0f && f <= 90.0f && f2 >= -180.0f && f2 <= 180.0f) {
|
|
z = true;
|
|
}
|
|
zzcw.zze(z, "Invalid latitude or longitude");
|
|
this.zza = f;
|
|
this.zzb = f2;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public final boolean equals(@Nullable Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj != null && zzet.class == obj.getClass()) {
|
|
zzet zzetVar = (zzet) obj;
|
|
if (this.zza == zzetVar.zza && this.zzb == zzetVar.zzb) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return ((Float.valueOf(this.zza).hashCode() + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + Float.valueOf(this.zzb).hashCode();
|
|
}
|
|
|
|
public final String toString() {
|
|
return "xyz: latitude=" + this.zza + ", longitude=" + this.zzb;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeFloat(this.zza);
|
|
parcel.writeFloat(this.zzb);
|
|
}
|
|
|
|
@Override // com.google.android.gms.internal.ads.zzax
|
|
public final /* synthetic */ void zza(zzat zzatVar) {
|
|
}
|
|
|
|
public /* synthetic */ zzet(Parcel parcel, zzes zzesVar) {
|
|
this.zza = parcel.readFloat();
|
|
this.zzb = parcel.readFloat();
|
|
}
|
|
}
|