This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 215180
Collapse All | Expand All

(-)a/parsing.api/src/org/netbeans/modules/parsing/impl/indexing/RepositoryUpdater.java (-8 / +1 lines)
Lines 3276-3289 Link Here
3276
        }
3276
        }
3277
        
3277
        
3278
        private boolean shouldRefresh() {
3278
        private boolean shouldRefresh() {
3279
            if (this.files.size() != 1) {
3279
            return !TransientUpdateSupport.isTransientUpdate();
3280
                return true;
3281
            }
3282
            final Source source = getActiveSource();
3283
            if (source == null) {
3284
                return true;
3285
            }
3286
            return !files.iterator().next().equals(source.getFileObject());            
3287
        }
3280
        }
3288
        
3281
        
3289
    } // End of FileListWork class
3282
    } // End of FileListWork class

Return to bug 215180