Upload FastSeekWpf/Core/IndexStore.cs
Browse files
FastSeekWpf/Core/IndexStore.cs
CHANGED
|
@@ -134,7 +134,11 @@ public class IndexStore
|
|
| 134 |
}
|
| 135 |
}
|
| 136 |
|
| 137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 138 |
{
|
| 139 |
// Sort by lowercase name for search
|
| 140 |
var indices = Enumerable.Range(0, Entries.Count).ToArray();
|
|
|
|
| 134 |
}
|
| 135 |
}
|
| 136 |
|
| 137 |
+
/// <summary>
|
| 138 |
+
/// Sort entries by lowercase name and rebuild lookup tables.
|
| 139 |
+
/// (Renamed from Finalize to avoid CS0465 warning — object.Finalize is the destructor.)
|
| 140 |
+
/// </summary>
|
| 141 |
+
public void CompleteIndex()
|
| 142 |
{
|
| 143 |
// Sort by lowercase name for search
|
| 144 |
var indices = Enumerable.Range(0, Entries.Count).ToArray();
|