- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
326 B
Java
13 lines
326 B
Java
package com.mbridge.msdk.dycreator.bus;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class NoSubscriberEvent {
|
|
public final EventBus eventBus;
|
|
public final Object originalEvent;
|
|
|
|
public NoSubscriberEvent(EventBus eventBus, Object obj) {
|
|
this.eventBus = eventBus;
|
|
this.originalEvent = obj;
|
|
}
|
|
}
|