Remove SLE from EditProxyViewModel.

This commit is contained in:
Alex Hart
2022-12-13 10:36:31 -04:00
committed by Cody Henthorne
parent c5b4f44ab8
commit 5f0d37739a
4 changed files with 58 additions and 40 deletions

View File

@@ -26,6 +26,11 @@ class LifecycleDisposable : DefaultLifecycleObserver {
return this
}
fun addAll(vararg disposable: Disposable): LifecycleDisposable {
disposables.addAll(*disposable)
return this
}
fun clear() {
disposables.clear()
}