Commit 4b10d247 authored by wanglei's avatar wanglei

...

parent 117ac552
package com.base.filerecoveryrecyclebin.utils
import java.io.File
object SimilarHelper {
fun calculate(list: ArrayList<File>) {
var result = arrayListOf<ArrayList<File>>()
val eachArrayList = arrayListOf<File>().apply {
addAll(list)
}
val iterator = list.iterator()
while (iterator.hasNext()) {
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment