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,41 @@
package com.mbridge.msdk.dycreator.bus;
import java.lang.reflect.Method;
/* loaded from: classes4.dex */
final class SubscriberMethod {
final Method a;
final ThreadMode b;
final Class<?> c;
String d;
public SubscriberMethod(Method method, ThreadMode threadMode, Class<?> cls) {
this.a = method;
this.b = threadMode;
this.c = cls;
}
public final boolean equals(Object obj) {
if (!(obj instanceof SubscriberMethod)) {
return false;
}
a();
return this.d.equals(((SubscriberMethod) obj).d);
}
private synchronized void a() {
if (this.d == null) {
StringBuilder sb = new StringBuilder(64);
sb.append(this.a.getDeclaringClass().getName());
sb.append('#');
sb.append(this.a.getName());
sb.append('(');
sb.append(this.c.getName());
this.d = sb.toString();
}
}
public final int hashCode() {
return this.a.hashCode();
}
}