34 lines
1.0 KiB
Java
34 lines
1.0 KiB
Java
package com.google.android.gms.common.api.internal;
|
|
|
|
import com.google.android.gms.common.Feature;
|
|
import com.google.android.gms.common.internal.Objects;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
final class zabs {
|
|
private final ApiKey zaa;
|
|
private final Feature zab;
|
|
|
|
/* synthetic */ zabs(ApiKey apiKey, Feature feature, zabr zabrVar) {
|
|
this.zaa = apiKey;
|
|
this.zab = feature;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (obj != null && (obj instanceof zabs)) {
|
|
zabs zabsVar = (zabs) obj;
|
|
if (Objects.equal(this.zaa, zabsVar.zaa) && Objects.equal(this.zab, zabsVar.zab)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return Objects.hashCode(this.zaa, this.zab);
|
|
}
|
|
|
|
public final String toString() {
|
|
return Objects.toStringHelper(this).add("key", this.zaa).add("feature", this.zab).toString();
|
|
}
|
|
} |