- 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
50 lines
1.5 KiB
Java
50 lines
1.5 KiB
Java
package com.google.android.gms.common.api;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import com.google.android.gms.common.annotation.KeepForSdk;
|
|
import com.google.android.gms.common.internal.Preconditions;
|
|
import com.google.android.gms.common.internal.ShowFirstParty;
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class BooleanResult implements Result {
|
|
private final Status zaa;
|
|
private final boolean zab;
|
|
|
|
@ShowFirstParty
|
|
@KeepForSdk
|
|
public BooleanResult(@NonNull Status status, boolean z) {
|
|
this.zaa = (Status) Preconditions.checkNotNull(status, "Status must not be null");
|
|
this.zab = z;
|
|
}
|
|
|
|
public final boolean equals(@Nullable Object obj) {
|
|
if (obj == null) {
|
|
return false;
|
|
}
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof BooleanResult)) {
|
|
return false;
|
|
}
|
|
BooleanResult booleanResult = (BooleanResult) obj;
|
|
return this.zaa.equals(booleanResult.zaa) && this.zab == booleanResult.zab;
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.api.Result
|
|
@NonNull
|
|
public Status getStatus() {
|
|
return this.zaa;
|
|
}
|
|
|
|
public boolean getValue() {
|
|
return this.zab;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return ((this.zaa.hashCode() + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + (this.zab ? 1 : 0);
|
|
}
|
|
}
|