Fix xml docs loading from assembly logix in XmlDocs.cs (#3415)
This commit is contained in:
parent
0ffe331599
commit
1a787952e9
|
|
@ -1088,9 +1088,6 @@ namespace CodeCompletion
|
|||
if (description != null)
|
||||
{
|
||||
description = description.Replace("!#", "");
|
||||
// Пусть здесь делаем все замены
|
||||
// Для рекурсивных <<>> нужно писать собственный парсер
|
||||
//description = System.Text.RegularExpressions.Regex.Replace(description, @"NewSet<\s*(.*)\s*>", "set of $1");
|
||||
}
|
||||
return description;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ namespace CodeCompletionTools
|
|||
|
||||
public static string Load(Assembly a, string path)
|
||||
{
|
||||
if (!ht.ContainsKey(a)) return null;
|
||||
if (ht.ContainsKey(a)) return null;
|
||||
string dir;
|
||||
if (string.IsNullOrEmpty(a.Location))
|
||||
dir = path;
|
||||
|
|
|
|||
Loading…
Reference in a new issue