jimu-decompiled/sources/com/google/android/gms/measurement/internal/zzcs.java
2025-05-13 19:24:51 +02:00

47 lines
904 B
Java

package com.google.android.gms.measurement.internal;
/* loaded from: classes.dex */
abstract class zzcs extends zzcr {
private boolean b;
zzcs(zzbw zzbwVar) {
super(zzbwVar);
this.a.a(this);
}
final boolean n() {
return this.b;
}
protected final void o() {
if (!n()) {
throw new IllegalStateException("Not initialized");
}
}
public final void p() {
if (this.b) {
throw new IllegalStateException("Can't initialize twice");
}
r();
this.a.G();
this.b = true;
}
protected abstract boolean q();
protected void r() {
}
public final void s() {
if (this.b) {
throw new IllegalStateException("Can't initialize twice");
}
if (q()) {
return;
}
this.a.G();
this.b = true;
}
}