what-the-bank/sources/com/google/common/eventbus/DeadEvent.java

28 lines
697 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.common.eventbus;
import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
/* loaded from: classes2.dex */
public class DeadEvent {
private final Object event;
private final Object source;
public DeadEvent(Object obj, Object obj2) {
this.source = Preconditions.checkNotNull(obj);
this.event = Preconditions.checkNotNull(obj2);
}
public String toString() {
return MoreObjects.toStringHelper(this).add("source", this.source).add("event", this.event).toString();
}
public Object getSource() {
return this.source;
}
public Object getEvent() {
return this.event;
}
}