Files
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

39 lines
898 B
Java

package com.fyber.inneractive.sdk.mraid;
import com.fyber.inneractive.sdk.util.p0;
import java.util.Map;
/* loaded from: classes2.dex */
public abstract class b {
public String a;
public final Map<String, String> b;
public final com.fyber.inneractive.sdk.web.j c;
public final p0 d;
public b(Map<String, String> map, com.fyber.inneractive.sdk.web.j jVar, p0 p0Var) {
this.b = map;
this.d = p0Var;
this.c = jVar;
}
public final int a(String str) {
String str2 = this.b.get(str);
if (str2 == null) {
return -1;
}
try {
return Integer.parseInt(str2, 10);
} catch (NumberFormatException unused) {
return -1;
}
}
public abstract void a();
public final String b(String str) {
return this.b.get(str);
}
public abstract boolean b();
}