35 lines
751 B
Java
35 lines
751 B
Java
package com.google.android.gms.flags;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class Singletons {
|
|
private static Singletons zzl;
|
|
private final FlagRegistry zzm = new FlagRegistry();
|
|
private final zzb zzn = new zzb();
|
|
|
|
private Singletons() {
|
|
}
|
|
|
|
private static Singletons zzc() {
|
|
Singletons singletons;
|
|
synchronized (Singletons.class) {
|
|
singletons = zzl;
|
|
}
|
|
return singletons;
|
|
}
|
|
|
|
public static FlagRegistry flagRegistry() {
|
|
return zzc().zzm;
|
|
}
|
|
|
|
public static zzb zzd() {
|
|
return zzc().zzn;
|
|
}
|
|
|
|
static {
|
|
Singletons singletons = new Singletons();
|
|
synchronized (Singletons.class) {
|
|
zzl = singletons;
|
|
}
|
|
}
|
|
}
|