Files
rr3-apk/decompiled/sources/com/google/android/gms/games/AnnotatedData.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

26 lines
466 B
Java

package com.google.android.gms.games;
import androidx.annotation.Nullable;
/* loaded from: classes2.dex */
public class AnnotatedData<T> {
@Nullable
private final Object zza;
private final boolean zzb;
public AnnotatedData(@Nullable Object obj, boolean z) {
this.zza = obj;
this.zzb = z;
}
@Nullable
public T get() {
return (T) this.zza;
}
public boolean isStale() {
return this.zzb;
}
}