Files
rr3-apk/decompiled-community/sources/com/mbridge/msdk/dycreator/bus/SubscriberMethod.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -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();
}
}