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

(-)versioncontrol/mercurial/src/org/netbeans/modules/mercurial/MercurialInterceptor.java (-8 lines)
Lines 294-303 Link Here
294
294
295
    private void fileCreatedImpl(final File file) {
295
    private void fileCreatedImpl(final File file) {
296
        if (file.isDirectory()) return;
296
        if (file.isDirectory()) return;
297
        if(HgUtils.isIgnored(file)){
298
            Mercurial.LOG.log(Level.FINE, "fileCreatedImpl(): Ignored File: {0}", new Object[] {file.getAbsolutePath()}); // NOI18N
299
            return;
300
        }
301
        cache.refresh(file, FileStatusCache.REPOSITORY_STATUS_UNKNOWN);
297
        cache.refresh(file, FileStatusCache.REPOSITORY_STATUS_UNKNOWN);
302
    }
298
    }
303
    
299
    
Lines 311-320 Link Here
311
307
312
    private void fileChangedImpl(File file) {
308
    private void fileChangedImpl(File file) {
313
        if (file.isDirectory()) return;
309
        if (file.isDirectory()) return;
314
        if(HgUtils.isIgnored(file)){
315
            Mercurial.LOG.log(Level.FINE, "fileChangedImpl(): Ignored File: {0}", new Object[] {file.getAbsolutePath()}); // NOI18N
316
            return;
317
        }
318
        cache.refreshForce(file, FileStatusCache.REPOSITORY_STATUS_UNKNOWN);
310
        cache.refreshForce(file, FileStatusCache.REPOSITORY_STATUS_UNKNOWN);
319
   }
311
   }
320
}
312
}

Return to bug 124320