2002-03-13 Duncan Mak <duncan@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml / XmlDocument.cs
index 987112960e714f0a214ad8b8922f92cea36bfbdc..6ebd3d6544833e43a184d1123c88179142d9ede8 100644 (file)
@@ -18,7 +18,7 @@ namespace System.Xml
        {
                #region Fields
 
-               private XmlLinkedNode lastChild;
+               private XmlLinkedNode lastLinkedChild;
 
                #endregion
 
@@ -97,40 +97,17 @@ namespace System.Xml
                        get { return false; }
                }
 
-               internal override XmlLinkedNode LastLinkedChild
-               {
+               internal override XmlLinkedNode LastLinkedChild {
                        get     {
-                               return lastChild;
+                               return lastLinkedChild;
                        }
-                       /// set'er Should only be called by XmlNode.AppendChild().
-                       set 
-                       {
-                               // This is our special case for clearing out all children.
-                               // XmlNode.RemoveAll() will call this method passing in
-                               // a null node.
-                               if (value == null)
-                               {
-                                       // This should allow the GC to collect up our circular list
-                                       // that we no longer have a reference to.
-                                       lastChild = null;
-                                       return;
-                               }
 
-                               if (LastChild == null) 
-                               {
-                                       lastChild = value;
-                                       LastLinkedChild.NextLinkedSibling = null;
-                               }
-                               
-                               value.NextLinkedSibling = LastLinkedChild.NextLinkedSibling;
-                               LastLinkedChild.NextLinkedSibling = value;
-
-                               SetParentNode(this);
+                       set {
+                               lastLinkedChild = value;
                        }
                }
                
-               public override string LocalName 
-               {
+               public override string LocalName {
                        get { return "#document"; }
                }