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/Commons.Xml.Relaxng/Commons.Xml.Relaxng.Derivative/Util.cs')
-rw-r--r--mcs/class/Commons.Xml.Relaxng/Commons.Xml.Relaxng.Derivative/Util.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/mcs/class/Commons.Xml.Relaxng/Commons.Xml.Relaxng.Derivative/Util.cs b/mcs/class/Commons.Xml.Relaxng/Commons.Xml.Relaxng.Derivative/Util.cs
index b1274648aab..c8b878d190a 100644
--- a/mcs/class/Commons.Xml.Relaxng/Commons.Xml.Relaxng.Derivative/Util.cs
+++ b/mcs/class/Commons.Xml.Relaxng/Commons.Xml.Relaxng.Derivative/Util.cs
@@ -91,22 +91,6 @@ namespace Commons.Xml.Relaxng.Derivative
intl = DebugRdpPattern (b.LValue, visitedPattern) +
DebugRdpPattern (b.RValue, visitedPattern);
- RdpData data = p as RdpData;
- if (data != null)
- intl = String.Format ("name={0},ns={1},type={2} {3}",
- data.Datatype.LocalName,
- data.Datatype.NamespaceURI,
- data.Datatype.GetType (),
- data is RdpDataExcept ? DebugRdpPattern (((RdpDataExcept) data).Except, visitedPattern) : String.Empty);
-
- RdpValue value = p as RdpValue;
- if (value != null)
- intl = String.Format ("name={0},ns={1},value={2} type={3}",
- value.Datatype.LocalName,
- value.Datatype.NamespaceURI,
- value.Value,
- value.Datatype.GetType ());
-
RdpElement el = p as RdpElement;
if (el != null)
intl = DebugNameClass (el.NameClass) +