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:
authorAtsushi Eno <atsushieno@gmail.com>2006-02-14 16:09:35 +0300
committerAtsushi Eno <atsushieno@gmail.com>2006-02-14 16:09:35 +0300
commit51c391133ee8a949c0e863d8dde1292b7e261f20 (patch)
treea258d1e889a6b0f3ec4a08c40948adfd804e8fe8 /mcs/class/System.XML/System.Xml.XPath
parentb545d7a564aefdcf0e9d1bd018da7c874696dbec (diff)
2006-02-14 Atsushi Enomoto <atsushi@ximian.com>
* Iterator.cs : tiny message fix (thanks to alp). svn path=/trunk/mcs/; revision=56851
Diffstat (limited to 'mcs/class/System.XML/System.Xml.XPath')
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/ChangeLog4
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/Iterator.cs4
2 files changed, 6 insertions, 2 deletions
diff --git a/mcs/class/System.XML/System.Xml.XPath/ChangeLog b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
index cc126a551e9..d1c5e3b7afd 100644
--- a/mcs/class/System.XML/System.Xml.XPath/ChangeLog
+++ b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
@@ -1,3 +1,7 @@
+2006-02-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Iterator.cs : tiny message fix (thanks to alp).
+
2006-01-25 Atsushi Enomoto <atsushi@ximian.com>
* XPathNavigator.cs : fixed IsNode signature found by updated
diff --git a/mcs/class/System.XML/System.Xml.XPath/Iterator.cs b/mcs/class/System.XML/System.Xml.XPath/Iterator.cs
index eb42e055c57..4dec8a4dbb9 100644
--- a/mcs/class/System.XML/System.Xml.XPath/Iterator.cs
+++ b/mcs/class/System.XML/System.Xml.XPath/Iterator.cs
@@ -522,7 +522,7 @@ namespace System.Xml.XPath
return true;
}
if (!_nav.MoveToParent ()) // should NEVER fail!
- throw new XPathException ("There seems some bugs on the XPathNavigator implementation class: " + _nav.GetType ());
+ throw new XPathException ("Current node is removed while it should not be, or there are some bugs in the XPathNavigator implementation class: " + _nav.GetType ());
_depth --;
}
_finished = true;
@@ -569,7 +569,7 @@ namespace System.Xml.XPath
return true;
}
if (!_nav.MoveToParent ()) // should NEVER fail!
- throw new XPathException ("There seems some bugs on the XPathNavigator implementation class: " + _nav.GetType ());
+ throw new XPathException ("Current node is removed while it should not be, or there are some bugs in the XPathNavigator implementation class: " + _nav.GetType ());
_depth --;
}
_finished = true;