fixed CI failure

This commit is contained in:
Holger Müller 2022-04-16 17:56:41 +02:00
parent 59e18bc5c0
commit c7d9af4529
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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 {