- 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
36 lines
1.0 KiB
Java
36 lines
1.0 KiB
Java
package com.google.android.gms.internal.drive;
|
|
|
|
import com.google.android.gms.common.api.Releasable;
|
|
import com.google.android.gms.common.api.Status;
|
|
import com.google.android.gms.drive.DriveApi;
|
|
import com.google.android.gms.drive.DriveContents;
|
|
|
|
/* loaded from: classes3.dex */
|
|
final class zzal implements Releasable, DriveApi.DriveContentsResult {
|
|
private final Status zzdy;
|
|
private final DriveContents zzo;
|
|
|
|
public zzal(Status status, DriveContents driveContents) {
|
|
this.zzdy = status;
|
|
this.zzo = driveContents;
|
|
}
|
|
|
|
@Override // com.google.android.gms.drive.DriveApi.DriveContentsResult
|
|
public final DriveContents getDriveContents() {
|
|
return this.zzo;
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.api.Result
|
|
public final Status getStatus() {
|
|
return this.zzdy;
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.api.Releasable
|
|
public final void release() {
|
|
DriveContents driveContents = this.zzo;
|
|
if (driveContents != null) {
|
|
driveContents.zzj();
|
|
}
|
|
}
|
|
}
|