Merge pull request #6222 from thundernest/update_kotlin

Update Kotlin to version 1.7.10
This commit is contained in:
cketti 2022-08-05 15:58:19 +02:00 committed by GitHub
commit 38019dc531
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -33,6 +33,7 @@ private class LoaderStateObserver<T>(
override fun onChanged(state: LoaderState<T>?) {
when (state) {
null -> Unit
is LoaderState.Loading -> loadingView.show()
is LoaderState.Error -> errorView.show()
is LoaderState.Data -> {

View file

@ -124,7 +124,7 @@ open class MessageList :
* filtered views, e.g. when only displaying the unread messages in a folder.
*/
private var noThreading = false
private var displayMode: DisplayMode? = null
private var displayMode: DisplayMode = DisplayMode.MESSAGE_LIST
private var messageReference: MessageReference? = null
/**
@ -307,7 +307,7 @@ open class MessageList :
}
if (savedInstanceState != null) {
val savedDisplayMode = savedInstanceState.getSerializable(STATE_DISPLAY_MODE) as DisplayMode?
val savedDisplayMode = savedInstanceState.getSerializable(STATE_DISPLAY_MODE) as DisplayMode
if (savedDisplayMode != DisplayMode.SPLIT_VIEW) {
displayMode = savedDisplayMode
return

View file

@ -11,7 +11,7 @@ buildscript {
]
versions = [
'kotlin': '1.6.10',
'kotlin': '1.7.10',
'kotlinCoroutines': '1.6.0',
'jetbrainsAnnotations': '23.0.0',
'androidxAppCompat': '1.4.1',