- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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();
|
|
}
|
|
}
|