summaryrefslogtreecommitdiff
path: root/plugins/git4idea/src/git4idea/repo/GitUntrackedFilesHolder.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/git4idea/src/git4idea/repo/GitUntrackedFilesHolder.java')
-rw-r--r--plugins/git4idea/src/git4idea/repo/GitUntrackedFilesHolder.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/git4idea/src/git4idea/repo/GitUntrackedFilesHolder.java b/plugins/git4idea/src/git4idea/repo/GitUntrackedFilesHolder.java
index 0cf82d9a521f..4ad12d8a121f 100644
--- a/plugins/git4idea/src/git4idea/repo/GitUntrackedFilesHolder.java
+++ b/plugins/git4idea/src/git4idea/repo/GitUntrackedFilesHolder.java
@@ -237,9 +237,6 @@ public class GitUntrackedFilesHolder implements Disposable, BulkFileListener {
break;
}
String path = event.getPath();
- if (path == null) {
- continue;
- }
if (totalRefreshNeeded(path)) {
allChanged = true;
}
@@ -253,7 +250,7 @@ public class GitUntrackedFilesHolder implements Disposable, BulkFileListener {
// if index has changed, no need to refresh specific files - we get the full status of all files
if (allChanged) {
- LOG.info(String.format("GitUntrackedFilesHolder: Index has changed, marking %s recursively dirty", myRoot));
+ LOG.debug(String.format("GitUntrackedFilesHolder: Index has changed, marking %s recursively dirty", myRoot));
myDirtyScopeManager.dirDirtyRecursively(myRoot);
synchronized (LOCK) {
myReady = false;