- 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
25 lines
651 B
Java
25 lines
651 B
Java
package com.mbridge.msdk.dycreator.bus;
|
|
|
|
/* loaded from: classes4.dex */
|
|
final class Subscription {
|
|
final Object a;
|
|
final SubscriberMethod b;
|
|
|
|
public Subscription(Object obj, SubscriberMethod subscriberMethod) {
|
|
this.a = obj;
|
|
this.b = subscriberMethod;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (!(obj instanceof Subscription)) {
|
|
return false;
|
|
}
|
|
Subscription subscription = (Subscription) obj;
|
|
return this.a == subscription.a && this.b.equals(subscription.b);
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.a.hashCode() + this.b.d.hashCode();
|
|
}
|
|
}
|