26 lines
467 B
Java
26 lines
467 B
Java
|
package j0;
|
||
|
|
||
|
import rx.Subscriber;
|
||
|
/* compiled from: Completable */
|
||
|
public class b extends Subscriber<Object> {
|
||
|
public final /* synthetic */ e i;
|
||
|
|
||
|
public b(c cVar, e eVar) {
|
||
|
this.i = eVar;
|
||
|
}
|
||
|
|
||
|
@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(Object obj) {
|
||
|
}
|
||
|
}
|