discord-jadx/app/src/main/java/j0/l/a/d2.java

37 lines
847 B
Java

package j0.l.a;
import rx.Subscriber;
/* compiled from: OperatorTakeUntil */
public class d2 extends Subscriber<T> {
public final /* synthetic */ Subscriber i;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public d2(f2 f2Var, Subscriber subscriber, boolean z2, Subscriber subscriber2) {
super(subscriber, z2);
this.i = subscriber2;
}
@Override // j0.g
public void onCompleted() {
try {
this.i.onCompleted();
} finally {
this.i.unsubscribe();
}
}
@Override // j0.g
public void onError(Throwable th) {
try {
this.i.onError(th);
} finally {
this.i.unsubscribe();
}
}
@Override // j0.g
public void onNext(T t) {
this.i.onNext(t);
}
}