make the copyMoveFilesTo function public
This commit is contained in:
parent
1d55fe8209
commit
69762dea16
2 changed files with 2 additions and 2 deletions
|
@ -29,5 +29,5 @@ ext {
|
|||
propMinSdkVersion = 16
|
||||
propTargetSdkVersion = propCompileSdkVersion
|
||||
propVersionCode = 1
|
||||
propVersionName = '2.17.0'
|
||||
propVersionName = '2.17.1'
|
||||
}
|
||||
|
|
|
@ -129,7 +129,7 @@ open class BaseSimpleActivity : AppCompatActivity() {
|
|||
}
|
||||
}
|
||||
|
||||
protected fun copyMoveFilesTo(files: ArrayList<File>, source: String, destination: String, isCopyOperation: Boolean, callback: () -> Unit) {
|
||||
fun copyMoveFilesTo(files: ArrayList<File>, source: String, destination: String, isCopyOperation: Boolean, callback: () -> Unit) {
|
||||
if (source == destination) {
|
||||
toast(R.string.source_and_destination_same)
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue