Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry.java b/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry.java
index 1fca924163..915f8eef25 100644
--- a/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry.java
+++ b/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry.java
@@ -39,7 +39,7 @@ public class IndexNamesRegistry {
public IndexNamesRegistry(File savedIndexNamesFile, IPath javaPluginWorkingLocation) {
super();
this.savedIndexNamesFile = savedIndexNamesFile;
- this.writeJob = Job.create("", this::save); //$NON-NLS-1$
+ this.writeJob = Job.create("Updating index names", this::save); //$NON-NLS-1$
this.writeJob.setSystem(true);
this.javaPluginWorkingLocation = javaPluginWorkingLocation;
}

Back to the top