fix sA
This commit is contained in:
parent
2398b4fc10
commit
bb7473e839
|
|
@ -275,7 +275,6 @@ public class BindableViewHolder extends RecyclerView.ViewHolder implements Lifec
|
|||
return baseLifecycleBindable.untilDestroy(completable, onCompletedAction);
|
||||
}
|
||||
|
||||
@SuppressWarnings("CPD-END")
|
||||
@NonNull
|
||||
@Override
|
||||
public Disposable untilDestroy(@NonNull final Completable completable,
|
||||
|
|
@ -296,6 +295,7 @@ public class BindableViewHolder extends RecyclerView.ViewHolder implements Lifec
|
|||
return baseLifecycleBindable.untilDestroy(maybe, onSuccessAction);
|
||||
}
|
||||
|
||||
@SuppressWarnings("CPD-END")
|
||||
@NonNull
|
||||
@Override
|
||||
public <T> Disposable untilDestroy(@NonNull final Maybe<T> maybe,
|
||||
|
|
|
|||
|
|
@ -227,7 +227,9 @@ public class LifecycleView extends FrameLayout implements LifecycleBindable {
|
|||
|
||||
@NonNull
|
||||
@Override
|
||||
public <T> Disposable untilStop(@NonNull final Maybe<T> maybe, @NonNull final Consumer<T> onSuccessAction, @NonNull final Consumer<Throwable> onErrorAction) {
|
||||
public <T> Disposable untilStop(@NonNull final Maybe<T> maybe,
|
||||
@NonNull final Consumer<T> onSuccessAction,
|
||||
@NonNull final Consumer<Throwable> onErrorAction) {
|
||||
return baseLifecycleBindable.untilStop(maybe, onSuccessAction, onErrorAction);
|
||||
}
|
||||
|
||||
|
|
@ -314,7 +316,9 @@ public class LifecycleView extends FrameLayout implements LifecycleBindable {
|
|||
|
||||
@NonNull
|
||||
@Override
|
||||
public <T> Disposable untilDestroy(@NonNull final Maybe<T> maybe, @NonNull final Consumer<T> onSuccessAction, @NonNull final Consumer<Throwable> onErrorAction) {
|
||||
public <T> Disposable untilDestroy(@NonNull final Maybe<T> maybe,
|
||||
@NonNull final Consumer<T> onSuccessAction,
|
||||
@NonNull final Consumer<Throwable> onErrorAction) {
|
||||
return baseLifecycleBindable.untilDestroy(maybe, onSuccessAction, onErrorAction);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue