Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
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));
}
}