21 lines
433 B
Java
21 lines
433 B
Java
package com.google.firebase.events;
|
|
|
|
/* compiled from: com.google.firebase:firebase-common@@16.0.2 */
|
|
/* loaded from: classes.dex */
|
|
public class Event<T> {
|
|
private final Class<T> a;
|
|
private final T b;
|
|
|
|
public T a() {
|
|
return this.b;
|
|
}
|
|
|
|
public Class<T> b() {
|
|
return this.a;
|
|
}
|
|
|
|
public String toString() {
|
|
return String.format("Event{type: %s, payload: %s}", this.a, this.b);
|
|
}
|
|
}
|