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:
Diffstat (limited to 'mcs/class/System.XML/System.Xml/XmlElement.cs')
-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