Files
rr3-apk/decompiled/sources/com/mbridge/msdk/tracker/network/w.java
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

42 lines
772 B
Java

package com.mbridge.msdk.tracker.network;
import com.mbridge.msdk.tracker.network.b;
/* loaded from: classes4.dex */
public final class w<T> {
public final T a;
public final b.a b;
public final ad c;
public boolean d;
public interface a {
void a(ad adVar);
}
public interface b<T> {
void a(T t);
}
public static <T> w<T> a(T t, b.a aVar) {
return new w<>(t, aVar);
}
public static <T> w<T> a(ad adVar) {
return new w<>(adVar);
}
private w(T t, b.a aVar) {
this.d = false;
this.a = t;
this.b = aVar;
this.c = null;
}
private w(ad adVar) {
this.d = false;
this.a = null;
this.b = null;
this.c = adVar;
}
}