Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
17
apk_decompiled/sources/l0/C0435a.java
Normal file
17
apk_decompiled/sources/l0/C0435a.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package l0;
|
||||
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
/* renamed from: l0.a, reason: case insensitive filesystem */
|
||||
/* loaded from: classes.dex */
|
||||
public final class C0435a extends c {
|
||||
|
||||
/* renamed from: b, reason: collision with root package name */
|
||||
public static final C0435a f7312b = new c();
|
||||
|
||||
@Override // l0.c
|
||||
public final Object a(b key) {
|
||||
Intrinsics.checkNotNullParameter(key, "key");
|
||||
return null;
|
||||
}
|
||||
}
|
||||
5
apk_decompiled/sources/l0/b.java
Normal file
5
apk_decompiled/sources/l0/b.java
Normal file
@@ -0,0 +1,5 @@
|
||||
package l0;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface b {
|
||||
}
|
||||
12
apk_decompiled/sources/l0/c.java
Normal file
12
apk_decompiled/sources/l0/c.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package l0;
|
||||
|
||||
import java.util.LinkedHashMap;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public abstract class c {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public final LinkedHashMap f7313a = new LinkedHashMap();
|
||||
|
||||
public abstract Object a(b bVar);
|
||||
}
|
||||
26
apk_decompiled/sources/l0/d.java
Normal file
26
apk_decompiled/sources/l0/d.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package l0;
|
||||
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class d extends c {
|
||||
public /* synthetic */ d(int i) {
|
||||
this(C0435a.f7312b);
|
||||
}
|
||||
|
||||
@Override // l0.c
|
||||
public final Object a(b key) {
|
||||
Intrinsics.checkNotNullParameter(key, "key");
|
||||
return this.f7313a.get(key);
|
||||
}
|
||||
|
||||
public final void b(b key, Object obj) {
|
||||
Intrinsics.checkNotNullParameter(key, "key");
|
||||
this.f7313a.put(key, obj);
|
||||
}
|
||||
|
||||
public d(c initialExtras) {
|
||||
Intrinsics.checkNotNullParameter(initialExtras, "initialExtras");
|
||||
this.f7313a.putAll(initialExtras.f7313a);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user