Skip to content

Commit 64672e0

Browse files
committed
Warning fixes
1 parent 0c7a355 commit 64672e0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

app/src/main/java/com/axiel7/tachisync/ui/external/ExternalViewModel.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import com.axiel7.tachisync.utils.FileUtils.releaseUriPermissions
1414
import com.axiel7.tachisync.utils.SharedPrefsHelpers
1515
import kotlinx.coroutines.Dispatchers
1616
import kotlinx.coroutines.launch
17-
import java.io.File
1817

1918
class ExternalViewModel: BaseViewModel() {
2019

app/src/main/java/com/axiel7/tachisync/ui/main/MainViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class MainViewModel: BaseViewModel() {
2020

2121
var isSyncing by mutableStateOf(false)
2222
var progress = mutableStateOf(0f)
23-
var currentFileCount = mutableStateOf(0)
23+
private var currentFileCount = mutableStateOf(0)
2424

2525
fun syncContents(context: Context, contents: List<Manga>, selected: List<Int>) {
2626
isSyncing = true

0 commit comments

Comments
 (0)