- 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
39 lines
1.2 KiB
Java
39 lines
1.2 KiB
Java
package com.google.android.gms.internal.drive;
|
|
|
|
import com.google.android.gms.common.internal.Objects;
|
|
import com.google.android.gms.drive.DriveId;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class zzf {
|
|
private final int status;
|
|
private final int zzct;
|
|
private final DriveId zzk;
|
|
|
|
public zzf(zzh zzhVar) {
|
|
this.zzk = zzhVar.zzk;
|
|
this.zzct = zzhVar.zzct;
|
|
this.status = zzhVar.status;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (obj != null && obj.getClass() == zzf.class) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
zzf zzfVar = (zzf) obj;
|
|
if (Objects.equal(this.zzk, zzfVar.zzk) && this.zzct == zzfVar.zzct && this.status == zzfVar.status) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return Objects.hashCode(this.zzk, Integer.valueOf(this.zzct), Integer.valueOf(this.status));
|
|
}
|
|
|
|
public final String toString() {
|
|
return String.format("FileTransferState[TransferType: %d, DriveId: %s, status: %d]", Integer.valueOf(this.zzct), this.zzk, Integer.valueOf(this.status));
|
|
}
|
|
}
|