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-01-25 18:36:37 +0300
committerAtsushi Eno <atsushieno@gmail.com>2006-01-25 18:36:37 +0300
commit69c5728b608bea0544a11cf9901cccf07f8af3c9 (patch)
treefc4a4e16da72a6c575ad5009a5f419f72eec2ef5 /mcs/class/System.XML/System.Xml.XPath
parent1d4eb101a3fad40a7ededa0b506554f72154da8d (diff)
2006-01-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlWriter.cs : Dispose() is protected. * XmlSchemaValidationException.cs : fixed .ctor() signatures. * XPathNavigator.cs : fixed IsNode signature found by updated corcompare. svn path=/trunk/mcs/; revision=56048
Diffstat (limited to 'mcs/class/System.XML/System.Xml.XPath')
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/ChangeLog5
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System.XML/System.Xml.XPath/ChangeLog b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
index ad30973bd0b..cc126a551e9 100644
--- a/mcs/class/System.XML/System.Xml.XPath/ChangeLog
+++ b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-25 Atsushi Enomoto <atsushi@ximian.com>
+
+ * XPathNavigator.cs : fixed IsNode signature found by updated
+ corcompare.
+
2006-01-11 Atsushi Enomoto <atsushi@ximian.com>
* Iterator.cs : Nowadays removal of cloning of the argument list
diff --git a/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs b/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
index af36dba1aec..04caf1dfa51 100644
--- a/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
+++ b/mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
@@ -900,7 +900,7 @@ namespace System.Xml.XPath
}
}
- public override bool IsNode {
+ public override sealed bool IsNode {
get { return true; }
}