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 117632
Collapse All | Expand All

(-)FileStatusCache.java (-1 / +6 lines)
Lines 478-484 Link Here
478
                for (int i = 0; i < files.length; i++) {
478
                for (int i = 0; i < files.length; i++) {
479
                    File file = files[i];
479
                    File file = files[i];
480
                    FileInformation fi = allFiles.get(file);
480
                    FileInformation fi = allFiles.get(file);
481
                    refreshFileStatus(file, fi);
481
                    if (fi == null) {
482
                        // We have a file in the cache which seems to have disappeared
483
                        refresh(file, FileStatusCache.REPOSITORY_STATUS_UNKNOWN);
484
                    } else {
485
                        refreshFileStatus(file, fi);
486
                    }
482
                }
487
                }
483
            } catch (HgException ex) {
488
            } catch (HgException ex) {
484
                Mercurial.LOG.log(Level.FINE, "refreshCached() file: {0} {1} { 2} ", new Object[] {repository.getAbsolutePath(), root.getAbsolutePath(), ex.toString()}); // NOI18N
489
                Mercurial.LOG.log(Level.FINE, "refreshCached() file: {0} {1} { 2} ", new Object[] {repository.getAbsolutePath(), root.getAbsolutePath(), ex.toString()}); // NOI18N

Return to bug 117632