|
|
@@ -620,10 +620,10 @@ public class ImageRecoverViewModel extends BaseViewModel {
|
|
|
|
|
|
public List<ImageDeepDetector.ImageFile> getAllDetectedList() {
|
|
|
List<ImageDeepDetector.ImageFile> allList = new ReverseArrayList<>();
|
|
|
- allList.addAll(detectedPhotoList);
|
|
|
- allList.addAll(detectedWxList);
|
|
|
- allList.addAll(detectedQQList);
|
|
|
allList.addAll(detectedOtherList);
|
|
|
+ allList.addAll(detectedQQList);
|
|
|
+ allList.addAll(detectedWxList);
|
|
|
+ allList.addAll(detectedPhotoList);
|
|
|
return allList;
|
|
|
}
|
|
|
|