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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
package com.fyber.inneractive.sdk.network;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/* loaded from: classes2.dex */
public class j {
public int a;
public final String b;
public InputStream c;
public Map<String, List<String>> d;
public String e;
public final ArrayList f;
public j() {
this.f = new ArrayList();
}
public final void a(int i) {
this.a = i;
}
public final void a(InputStream inputStream) {
this.c = inputStream;
}
public final void a(String str) {
this.e = str;
}
public final void a(Map<String, List<String>> map) {
this.d = map;
}
public final InputStream b() {
return this.c;
}
public final String c() {
return this.e;
}
public final Map<String, List<String>> d() {
return this.d;
}
public final int e() {
return this.a;
}
public j(FilterInputStream filterInputStream, int i, String str, Map map, String str2) {
this();
this.c = filterInputStream;
this.a = i;
this.b = str;
this.d = map;
this.e = str2;
}
public void a() throws IOException {
InputStream inputStream = this.c;
if (inputStream != null) {
try {
inputStream.close();
} catch (Throwable unused) {
}
}
}
}