diff --git a/CodeCompletion/DomConverter.cs b/CodeCompletion/DomConverter.cs index c9fbfcc2a..ee94fa948 100644 --- a/CodeCompletion/DomConverter.cs +++ b/CodeCompletion/DomConverter.cs @@ -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; } diff --git a/ParserTools/XmlDocs.cs b/ParserTools/XmlDocs.cs index 7bd7cf7fe..b3b20d040 100644 --- a/ParserTools/XmlDocs.cs +++ b/ParserTools/XmlDocs.cs @@ -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;