Avoid clearing cached XML documentation data for Editor assembly

This commit is contained in:
2025-05-02 13:49:41 +03:00
parent 1e7c2f64d3
commit ebe906a47a

View File

@@ -374,7 +374,12 @@ namespace FlaxEditor.Modules.SourceCodeEditing
{
_typeCache.Clear();
_memberCache.Clear();
_xmlCache.Clear();
foreach (var asm in _xmlCache.Keys.ToArray())
{
if (asm.IsCollectible)
_xmlCache.Remove(asm);
}
}
/// <inheritdoc />