Files
rr3-apk/decompiled/sources/com/google/android/gms/measurement/internal/zzg.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

50 lines
1006 B
Java

package com.google.android.gms.measurement.internal;
import androidx.annotation.WorkerThread;
/* loaded from: classes3.dex */
abstract class zzg extends zzd {
private boolean zza;
public zzg(zzhj zzhjVar) {
super(zzhjVar);
this.zzu.zzaa();
}
@WorkerThread
public void zzx() {
}
public final boolean zzy() {
return this.zza;
}
public abstract boolean zzz();
public final void zzu() {
if (!zzy()) {
throw new IllegalStateException("Not initialized");
}
}
public final void zzv() {
if (this.zza) {
throw new IllegalStateException("Can't initialize twice");
}
if (zzz()) {
return;
}
this.zzu.zzz();
this.zza = true;
}
public final void zzw() {
if (this.zza) {
throw new IllegalStateException("Can't initialize twice");
}
zzx();
this.zzu.zzz();
this.zza = true;
}
}