Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.XML/System.Xml/XmlEntity.cs')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlEntity.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlEntity.cs b/mcs/class/System.XML/System.Xml/XmlEntity.cs
index 91268e6edaa..a1dd3f084bf 100644
--- a/mcs/class/System.XML/System.Xml/XmlEntity.cs
+++ b/mcs/class/System.XML/System.Xml/XmlEntity.cs
@@ -33,7 +33,7 @@ using Mono.Xml;
namespace System.Xml
{
- public class XmlEntity : XmlNode, IHasXmlChildNode
+ public class XmlEntity : XmlNode
{
#region Constructors
@@ -57,17 +57,11 @@ namespace System.Xml
string publicId;
string systemId;
string baseUri;
- XmlLinkedNode lastLinkedChild;
#endregion
#region Properties
- XmlLinkedNode IHasXmlChildNode.LastLinkedChild {
- get { return lastLinkedChild; }
- set { lastLinkedChild = value; }
- }
-
public override string BaseURI {
get { return baseUri; }
}