Previous code was throw IllegalStateException(), so keep the existing error, even if it should never happen, being compliant with UseCheckOrError detekt rule.
This commit is contained in:
parent
d22b005aa3
commit
1bfbef1ab5
1 changed files with 1 additions and 1 deletions
|
|
@ -236,7 +236,7 @@ private fun MapView.lifecycleObserver(previousState: MutableState<Lifecycle.Even
|
||||||
Lifecycle.Event.ON_DESTROY -> {
|
Lifecycle.Event.ON_DESTROY -> {
|
||||||
//handled in onDispose
|
//handled in onDispose
|
||||||
}
|
}
|
||||||
Lifecycle.Event.ON_ANY -> Unit
|
Lifecycle.Event.ON_ANY -> error("ON_ANY should never be used")
|
||||||
}
|
}
|
||||||
previousState.value = event
|
previousState.value = event
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue