Author: atsushi
Date: 2005-03-16 00:53:02 -0500 (Wed, 16 Mar 2005)
New Revision: 41870

Modified:
   trunk/mcs/class/System.XML/System.Xml.XPath/ChangeLog
   trunk/mcs/class/System.XML/System.Xml.XPath/Iterator.cs
Log:
2004-03-16  Atsushi Enomoto  <[EMAIL PROTECTED]>

        * Iterator.cs : reduced extra clone.



Modified: trunk/mcs/class/System.XML/System.Xml.XPath/ChangeLog
===================================================================
--- trunk/mcs/class/System.XML/System.Xml.XPath/ChangeLog       2005-03-16 
05:32:07 UTC (rev 41869)
+++ trunk/mcs/class/System.XML/System.Xml.XPath/ChangeLog       2005-03-16 
05:53:02 UTC (rev 41870)
@@ -1,3 +1,7 @@
+2004-03-16  Atsushi Enomoto  <[EMAIL PROTECTED]>
+
+       * Iterator.cs : reduced extra clone.
+
 2004-03-15  Atsushi Enomoto  <[EMAIL PROTECTED]>
 
        * DefaultContext.cs,

Modified: trunk/mcs/class/System.XML/System.Xml.XPath/Iterator.cs
===================================================================
--- trunk/mcs/class/System.XML/System.Xml.XPath/Iterator.cs     2005-03-16 
05:32:07 UTC (rev 41869)
+++ trunk/mcs/class/System.XML/System.Xml.XPath/Iterator.cs     2005-03-16 
05:53:02 UTC (rev 41870)
@@ -361,7 +361,7 @@
                {
                        startPosition = other.startPosition;
                        if (other.navigators != null)
-                               navigators = (ArrayList) other.navigators.Clone 
();
+                               navigators = (ArrayList) other.navigators;
                        currentPosition = other.currentPosition;
                }
 

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to