mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
IDEA-65174 WEB-25409 VFS: do not analyze events from refresh when refreshing symbolic links
GitOrigin-RevId: 16b1417e291cbcf489981685a78a1b0cf77aef2f
This commit is contained in:
committed by
intellij-monorepo-bot
parent
74594093c9
commit
a0e55eb2a0
@@ -71,9 +71,8 @@ public class SymbolicLinkRefresher {
|
||||
}
|
||||
};
|
||||
|
||||
for (int i = events.size() - 1; i >= 0; i--) {
|
||||
VFileEvent event = events.get(i);
|
||||
if (event.getFileSystem() != mySystem) {
|
||||
for (VFileEvent event: events) {
|
||||
if (event.isFromRefresh() || event.getFileSystem() != mySystem) {
|
||||
continue;
|
||||
}
|
||||
if (event instanceof VFileContentChangeEvent
|
||||
|
||||
Reference in New Issue
Block a user