mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-02-24 07:47:45 +01:00
remove a redundant function
This commit is contained in:
parent
41b34d9056
commit
2f6579318b
@ -46,7 +46,7 @@ ext {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
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.theartofdev.edmodo:android-image-cropper:2.6.0'
|
||||||
implementation 'com.android.support:multidex:1.0.2'
|
implementation 'com.android.support:multidex:1.0.2'
|
||||||
implementation 'com.google.code.gson:gson:2.8.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() {
|
private fun checkDeleteConfirmation() {
|
||||||
if (skipConfirmationDialog) {
|
if (skipConfirmationDialog) {
|
||||||
deleteConfirmed()
|
deleteFiles()
|
||||||
} else {
|
} else {
|
||||||
askConfirmDelete()
|
askConfirmDelete()
|
||||||
}
|
}
|
||||||
@ -204,14 +204,10 @@ class MediaAdapter(activity: BaseSimpleActivity, var media: MutableList<Medium>,
|
|||||||
private fun askConfirmDelete() {
|
private fun askConfirmDelete() {
|
||||||
DeleteWithRememberDialog(activity) {
|
DeleteWithRememberDialog(activity) {
|
||||||
skipConfirmationDialog = it
|
skipConfirmationDialog = it
|
||||||
deleteConfirmed()
|
deleteFiles()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun deleteConfirmed() {
|
|
||||||
deleteFiles()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun getCurrentPath() = media[selectedPositions.first()].path
|
private fun getCurrentPath() = media[selectedPositions.first()].path
|
||||||
|
|
||||||
private fun deleteFiles() {
|
private fun deleteFiles() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user