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:
authorMarek Safar <marek.safar@gmail.com>2012-04-16 17:24:04 +0400
committerMarek Safar <marek.safar@gmail.com>2012-04-16 20:35:59 +0400
commit0f7de17e3f7030cfa7422ecfd8867b74e5d5e1ab (patch)
tree8b3fce05eac075dfa1324065aaebd1e34ab04080 /mcs/class/System.XML/System.Xml
parent50fb860bbf74244414c2deafca65f4a9ac4f575c (diff)
Remove 1.1 only members with wrong profile check
Diffstat (limited to 'mcs/class/System.XML/System.Xml')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlAttribute.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlAttribute.cs b/mcs/class/System.XML/System.Xml/XmlAttribute.cs
index e9c1e2b96c7..8095b0d6407 100644
--- a/mcs/class/System.XML/System.Xml/XmlAttribute.cs
+++ b/mcs/class/System.XML/System.Xml/XmlAttribute.cs
@@ -117,25 +117,12 @@ namespace System.Xml
}
public override string InnerText {
-#if !(NET_2_0)
- get {
- return base.InnerText;
- }
-#endif
-
set {
Value = value;
}
}
public override string InnerXml {
-#if !(NET_2_0)
- get {
- // Not sure why this is an override. Passing through for now.
- return base.InnerXml;
- }
-#endif
-
set {
RemoveAll ();
XmlNamespaceManager nsmgr = ConstructNamespaceManager ();