removed logging

This commit is contained in:
X1nto 2021-02-15 19:34:52 +04:00
parent b6c01333b0
commit 62b540b95c
1 changed files with 0 additions and 2 deletions

View File

@ -5,7 +5,6 @@ import android.content.Context
import android.content.Intent
import android.net.Uri
import android.os.Build
import android.util.Log
import androidx.core.content.FileProvider
import androidx.lifecycle.MutableLiveData
import com.vanced.manager.R
@ -97,7 +96,6 @@ object DownloadHelper : CoroutineScope by CoroutineScope(Dispatchers.IO) {
outputStream.write(fileReader, 0, read)
downloadedBytes += read.toLong()
downloadProgress.value?.downloadProgress?.postValue((downloadedBytes * 100 / totalBytes).toInt())
Log.d("test", (downloadedBytes * 100 / totalBytes).toString())
}
outputStream.flush()
true