discord-jadx/app/src/main/java/j0/n/d.java

29 lines
531 B
Java
Raw Permalink Normal View History

2021-11-01 07:19:03 +00:00
package j0.n;
2021-11-01 07:19:03 +00:00
import j0.g;
import rx.Subscriber;
2022-03-01 22:12:19 +00:00
/* compiled from: Subscribers.java */
/* loaded from: classes3.dex */
public final class d extends Subscriber<T> {
2021-12-17 22:01:24 +00:00
public final /* synthetic */ g j;
public d(g gVar) {
2021-12-17 22:01:24 +00:00
this.j = gVar;
}
2021-11-01 07:19:03 +00:00
@Override // j0.g
public void onCompleted() {
2021-12-17 22:01:24 +00:00
this.j.onCompleted();
}
2021-11-01 07:19:03 +00:00
@Override // j0.g
public void onError(Throwable th) {
2021-12-17 22:01:24 +00:00
this.j.onError(th);
}
2021-11-01 07:19:03 +00:00
@Override // j0.g
public void onNext(T t) {
2021-12-17 22:01:24 +00:00
this.j.onNext(t);
}
}