Upgrade kotlin to v2 (#4461)

This commit is contained in:
Konrad Pozniak 2024-05-23 21:51:25 +02:00 committed by GitHub
commit 78b1fcb9c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 4 deletions

View file

@ -20,7 +20,7 @@ inline fun <T : ViewBinding> AppCompatActivity.viewBinding(
bindingInflater(layoutInflater)
}
private class ViewLifecycleLazy<out T : Any>(
private class ViewLifecycleLazy<T : Any>(
private val fragment: Fragment,
private val initializer: (View) -> T
) : Lazy<T>, LifecycleEventObserver {