remove a redundant function
This commit is contained in:
parent
41b34d9056
commit
2f6579318b
|
@ -46,7 +46,7 @@ ext {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.simplemobiletools:commons:3.12.14'
|
||||
implementation 'com.simplemobiletools:commons:3.12.22'
|
||||
implementation 'com.theartofdev.edmodo:android-image-cropper:2.6.0'
|
||||
implementation 'com.android.support:multidex:1.0.2'
|
||||
implementation 'com.google.code.gson:gson:2.8.2'
|
||||
|
|
|
@ -195,7 +195,7 @@ class MediaAdapter(activity: BaseSimpleActivity, var media: MutableList<Medium>,
|
|||
|
||||
private fun checkDeleteConfirmation() {
|
||||
if (skipConfirmationDialog) {
|
||||
deleteConfirmed()
|
||||
deleteFiles()
|
||||
} else {
|
||||
askConfirmDelete()
|
||||
}
|
||||
|
@ -204,14 +204,10 @@ class MediaAdapter(activity: BaseSimpleActivity, var media: MutableList<Medium>,
|
|||
private fun askConfirmDelete() {
|
||||
DeleteWithRememberDialog(activity) {
|
||||
skipConfirmationDialog = it
|
||||
deleteConfirmed()
|
||||
deleteFiles()
|
||||
}
|
||||
}
|
||||
|
||||
private fun deleteConfirmed() {
|
||||
deleteFiles()
|
||||
}
|
||||
|
||||
private fun getCurrentPath() = media[selectedPositions.first()].path
|
||||
|
||||
private fun deleteFiles() {
|
||||
|
|
Loading…
Reference in New Issue