File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/commonMain/kotlin/com.adamratzman.spotify/models Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import com.adamratzman.spotify.http.SpotifyEndpoint
6
6
import com.adamratzman.spotify.models.serialization.toCursorBasedPagingObject
7
7
import com.adamratzman.spotify.models.serialization.toPagingObject
8
8
import com.adamratzman.spotify.utils.runBlocking
9
- import kotlin.reflect.KClass
10
9
import kotlinx.coroutines.Dispatchers
11
10
import kotlinx.coroutines.ExperimentalCoroutinesApi
12
11
import kotlinx.coroutines.flow.Flow
@@ -18,6 +17,7 @@ import kotlinx.coroutines.flow.toList
18
17
import kotlinx.serialization.SerialName
19
18
import kotlinx.serialization.Serializable
20
19
import kotlinx.serialization.Transient
20
+ import kotlin.reflect.KClass
21
21
22
22
/*
23
23
Types used in PagingObjects and CursorBasedPagingObjects:
@@ -209,7 +209,7 @@ abstract class AbstractPagingObject<T : Any>(
209
209
@Transient open val offset : Int = 0 ,
210
210
@Transient open val previous : String? = null ,
211
211
@Transient open val total : Int = -1
212
- ) : List<T> by items {
212
+ ) {
213
213
@Transient
214
214
internal var endpoint: SpotifyEndpoint ? = null
215
215
You can’t perform that action at this time.
0 commit comments