Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
package com.google.android.gms.common.api;
|
||||
|
||||
import com.google.android.gms.common.internal.Preconditions;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class BooleanResult implements Result {
|
||||
private final Status zaa;
|
||||
private final boolean zab;
|
||||
|
||||
public BooleanResult(Status status, boolean z) {
|
||||
this.zaa = (Status) Preconditions.checkNotNull(status, "Status must not be null");
|
||||
this.zab = z;
|
||||
}
|
||||
|
||||
public final boolean equals(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
|
||||
public Status getStatus() {
|
||||
return this.zaa;
|
||||
}
|
||||
|
||||
public boolean getValue() {
|
||||
return this.zab;
|
||||
}
|
||||
|
||||
public final int hashCode() {
|
||||
return ((this.zaa.hashCode() + 527) * 31) + (this.zab ? 1 : 0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user