- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
50 lines
1006 B
Java
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;
|
|
}
|
|
}
|