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
path: root/data
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2004-02-24 23:02:47 +0300
committerLluis Sanchez <lluis@novell.com>2004-02-24 23:02:47 +0300
commitd568c76f4c366f6b9602b3d743602b35a8c060aa (patch)
tree161084d4815f8c2349eba0788ccad8651907578e /data
parent845610468b6eb2cccdff3520207795b37e79ca48 (diff)
Little fix
svn path=/trunk/mono/; revision=23421
Diffstat (limited to 'data')
-rw-r--r--data/DefaultWsdlHelpGenerator.aspx5
1 files changed, 1 insertions, 4 deletions
diff --git a/data/DefaultWsdlHelpGenerator.aspx b/data/DefaultWsdlHelpGenerator.aspx
index d233530212b..befe4c86d79 100644
--- a/data/DefaultWsdlHelpGenerator.aspx
+++ b/data/DefaultWsdlHelpGenerator.aspx
@@ -1208,10 +1208,7 @@ public class HtmlSampleGenerator: SampleGenerator
}
else if (item is XmlSchemaAny)
{
- xtw.WriteStartElement ("any"); xtw.WriteEndElement ();
- if (multiValue) {
- xtw.WriteStartElement ("any"); xtw.WriteEndElement ();
- }
+ xtw.WriteString (GetLiteral ("xml"));
}
else if (item is XmlSchemaParticle) {
WriteParticleContent (xtw, ns, (XmlSchemaParticle)item, multiValue);