package j0.n; import rx.Subscriber; /* compiled from: Subscribers */ public final class e extends Subscriber { public final /* synthetic */ Subscriber i; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public e(Subscriber subscriber, Subscriber subscriber2) { super(subscriber); this.i = subscriber2; } @Override // j0.g public void onCompleted() { this.i.onCompleted(); } @Override // j0.g public void onError(Throwable th) { this.i.onError(th); } @Override // j0.g public void onNext(T t) { this.i.onNext(t); } }