- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
29 lines
648 B
Java
29 lines
648 B
Java
package com.amazon.device.iap.internal.c;
|
|
|
|
import java.util.Set;
|
|
import java.util.concurrent.ConcurrentSkipListSet;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class b {
|
|
private static final b b = new b();
|
|
private final Set<String> a = new ConcurrentSkipListSet();
|
|
|
|
public static b a() {
|
|
return b;
|
|
}
|
|
|
|
public boolean a(String str) {
|
|
if (com.amazon.device.iap.internal.util.d.a(str)) {
|
|
return false;
|
|
}
|
|
return this.a.remove(str);
|
|
}
|
|
|
|
public void b(String str) {
|
|
if (com.amazon.device.iap.internal.util.d.a(str)) {
|
|
return;
|
|
}
|
|
this.a.add(str);
|
|
}
|
|
}
|