From 8660555012eb0a67ac6836f3640495e349f56fc5 Mon Sep 17 00:00:00 2001 From: Anton Makeev Date: Wed, 30 Mar 2011 20:03:16 +0200 Subject: [PATCH] more user-friendly message on index rebuild --- .../src/com/intellij/util/indexing/FileBasedIndex.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/lang-impl/src/com/intellij/util/indexing/FileBasedIndex.java b/platform/lang-impl/src/com/intellij/util/indexing/FileBasedIndex.java index 4d4cbcc8f7b9..7fe967d8856b 100644 --- a/platform/lang-impl/src/com/intellij/util/indexing/FileBasedIndex.java +++ b/platform/lang-impl/src/com/intellij/util/indexing/FileBasedIndex.java @@ -276,7 +276,7 @@ public class FileBasedIndex implements ApplicationComponent { FileUtil.delete(corruptionMarker); String rebuildNotification = null; if (currentVersionCorrupted) { - rebuildNotification = "Index files on disk are corrupted, global index rebuild scheduled."; + rebuildNotification = "Index files on disk are corrupted. Indices will be rebuilt."; } else if (versionChanged) { rebuildNotification = "Index file format has changed for some indices. These indices will be rebuilt.";