mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
30 lines
867 B
Java
30 lines
867 B
Java
package com.google.common.eventbus;
|
|
|
|
import androidx.core.app.NotificationCompat;
|
|
import com.google.common.base.MoreObjects;
|
|
import com.google.common.base.Preconditions;
|
|
import io.sentry.protocol.TransactionInfo;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
public class DeadEvent {
|
|
private final Object event;
|
|
private final Object source;
|
|
|
|
public Object getEvent() {
|
|
return this.event;
|
|
}
|
|
|
|
public Object getSource() {
|
|
return this.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(TransactionInfo.JsonKeys.SOURCE, this.source).add(NotificationCompat.CATEGORY_EVENT, this.event).toString();
|
|
}
|
|
}
|