fixed CI failure
This commit is contained in:
parent
59e18bc5c0
commit
c7d9af4529
|
@ -220,7 +220,7 @@ open class APIDataSource private constructor(
|
|||
|
||||
@Throws(HttpDataSourceException::class)
|
||||
override fun read(buffer: ByteArray, offset: Int, length: Int): Int {
|
||||
//Timber.d("APIDatasource: Read: %s %s", offset, length)
|
||||
// Timber.d("APIDatasource: Read: %s %s", offset, length)
|
||||
return try {
|
||||
readInternal(buffer, offset, length)
|
||||
} catch (e: IOException) {
|
||||
|
|
|
@ -85,7 +85,7 @@ class CachedDataSource(
|
|||
|
||||
@Suppress("MagicNumber")
|
||||
override fun read(buffer: ByteArray, offset: Int, length: Int): Int {
|
||||
//if (offset > 0 || length > 4)
|
||||
// if (offset > 0 || length > 4)
|
||||
// Timber.d("CachedDatasource: Read: %s %s", offset, length)
|
||||
return if (cachePath != null) {
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue