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:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2002-08-23 03:28:30 +0400
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2002-08-23 03:28:30 +0400
commit5e9c839aa8699584e2926a19d093736fcd183c13 (patch)
tree72a8192d2f8ca2e52658e16c0301e64fda15cf5e /mcs/class/System.XML/System.Xml
parent0fb81cd38b69e5733262c400464b74758fa52dbf (diff)
REvert changes - they were wrong
svn path=/trunk/mcs/; revision=6915
Diffstat (limited to 'mcs/class/System.XML/System.Xml')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlElement.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlElement.cs b/mcs/class/System.XML/System.Xml/XmlElement.cs
index ccc62d69536..be669c5fc74 100644
--- a/mcs/class/System.XML/System.Xml/XmlElement.cs
+++ b/mcs/class/System.XML/System.Xml/XmlElement.cs
@@ -21,7 +21,6 @@ namespace System.Xml
private string localName;
private string namespaceURI;
private string prefix;
- private string node_value;
#endregion
@@ -114,16 +113,6 @@ namespace System.Xml
}
}
- public override string Value {
- get {
- return node_value;
- }
-
- set {
- node_value = value;
- }
- }
-
#endregion
#region Methods