making the visibility toggling function a bit clearer to read

This commit is contained in:
tibbi 2020-04-18 12:27:39 +02:00
parent 8ca190d8ef
commit e765332e3b

View file

@ -235,9 +235,7 @@ class DirectoryAdapter(activity: BaseSimpleActivity, var dirs: ArrayList<Directo
hideFolders(selectedPaths)
}
}
return
}
} else {
selectedPaths.filter { it != FAVORITES && it != RECYCLE_BIN && (selectedPaths.size == 1 || !activity.config.isFolderProtected(it)) }.forEach {
val path = it
activity.handleLockedFolderOpening(path) { success ->
@ -258,6 +256,7 @@ class DirectoryAdapter(activity: BaseSimpleActivity, var dirs: ArrayList<Directo
}
}
}
}
private fun hideFolders(paths: ArrayList<String>) {
for (path in paths) {