Files
rr3-apk/decompiled/sources/com/mbridge/msdk/dycreator/bus/SubscriberMethod.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
1.0 KiB
Java

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();
}
}