Browse Source

Remove unused code.

pull/2509/head
Siegfried Pammer 4 years ago
parent
commit
6cc89378aa
  1. 6
      ICSharpCode.Decompiler/Documentation/XmlDocumentationElement.cs

6
ICSharpCode.Decompiler/Documentation/XmlDocumentationElement.cs

@ -25,7 +25,6 @@ using System.Text; @@ -25,7 +25,6 @@ using System.Text;
using System.Threading;
using System.Xml.Linq;
using ICSharpCode.Decompiler.Documentation;
using ICSharpCode.Decompiler.TypeSystem;
using ICSharpCode.Decompiler.Util;
@ -37,11 +36,6 @@ namespace ICSharpCode.Decompiler.Documentation @@ -37,11 +36,6 @@ namespace ICSharpCode.Decompiler.Documentation
/// </summary>
public class XmlDocumentationElement
{
static XmlDocumentationElement Create(string documentationComment, IEntity declaringEntity)
{
return new XmlDocumentationElement(XElement.Parse(documentationComment), declaringEntity, null);
}
readonly XElement? element;
readonly IEntity? declaringEntity;
readonly Func<string, IEntity?>? crefResolver;

Loading…
Cancel
Save