mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
Merge pull request #2821 from nextcloud/refresh-folder-operation-vector-replace
operations: Replace use of Vector with a unsynchronized equivalent.
This commit is contained in:
commit
cb02d480c5
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ public class RefreshFolderOperation extends RemoteOperation {
|
||||||
|
|
||||||
Log_OC.d(TAG, "Remote folder " + mLocalFolder.getRemotePath() + " changed - starting update of local data ");
|
Log_OC.d(TAG, "Remote folder " + mLocalFolder.getRemotePath() + " changed - starting update of local data ");
|
||||||
|
|
||||||
List<OCFile> updatedFiles = new Vector<>(folderAndFiles.size() - 1);
|
List<OCFile> updatedFiles = new ArrayList<>(folderAndFiles.size() - 1);
|
||||||
mFilesToSyncContents.clear();
|
mFilesToSyncContents.clear();
|
||||||
|
|
||||||
// if local folder is encrypted, download fresh metadata
|
// if local folder is encrypted, download fresh metadata
|
||||||
|
|
Loading…
Reference in a new issue