more lint cleanup??

lint kept unintenting it each build so not using block comments on it
This commit is contained in:
Jays2Kings 2021-04-10 20:02:50 -04:00
parent 4805e54b63
commit 9036fa8ca9

View File

@ -41,11 +41,9 @@ private suspend fun <T> Observable<T>.awaitOne(): T = suspendCancellableCoroutin
}
override fun onError(e: Throwable) {
/*
* Rx1 observable throws NoSuchElementException if cancellation happened before
* element emission. To mitigate this we try to atomically resume continuation with exception:
* if resume failed, then we know that continuation successfully cancelled itself
*/
// Rx1 observable throws NoSuchElementException if cancellation happened before
// element emission. To mitigate this we try to atomically resume continuation with exception:
// if resume failed, then we know that continuation successfully cancelled itself
val token = cont.tryResumeWithException(e)
if (token != null) {
cont.completeResume(token)