Re: RFR: 8274497: Unnecessary Vector usage in AquaFileSystemModel

2021-09-30 Thread Pankaj Bansal
On Fri, 17 Sep 2021 20:32:00 GMT, Andrey Turbanov wrote: > Fields AquaFileSystemModel.fileCache and > AquaFileSystemModel.FilesLoader.queuedTasks are accessed only under > synchronized(fileCacheLock). > It means extract synchronization by Vector is not needed. Looks good to me -

Re: RFR: 8274497: Unnecessary Vector usage in AquaFileSystemModel

2021-09-30 Thread Sergey Bylokhov
On Fri, 17 Sep 2021 20:32:00 GMT, Andrey Turbanov wrote: > Fields AquaFileSystemModel.fileCache and > AquaFileSystemModel.FilesLoader.queuedTasks are accessed only under > synchronized(fileCacheLock). > It means extract synchronization by Vector is not needed. Marked as reviewed by serb (Revi

Re: RFR: 8274497: Unnecessary Vector usage in AquaFileSystemModel

2021-09-29 Thread Sergey Bylokhov
On Fri, 17 Sep 2021 20:32:00 GMT, Andrey Turbanov wrote: > Fields AquaFileSystemModel.fileCache and > AquaFileSystemModel.FilesLoader.queuedTasks are accessed only under > synchronized(fileCacheLock). > It means extract synchronization by Vector is not needed. Looks fine, please update the co

RFR: 8274497: Unnecessary Vector usage in AquaFileSystemModel

2021-09-29 Thread Andrey Turbanov
Fields AquaFileSystemModel.fileCache and AquaFileSystemModel.FilesLoader.queuedTasks are accessed only under synchronized(fileCacheLock). It means extract synchronization by Vector is not needed. - Commit messages: - [PATCH] Unnecessary Vector usage in AquaFileSystemModel - [PATCH