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/web
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2005-11-08 20:27:03 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-11-08 20:27:03 +0300
commitc8652088dd63148799036846f8e11d213e1fde1a (patch)
tree4110281a9d4a1ef5c6cc7df6075a04b749ec0ea7 /web
parent458190aedf24402225ecf06ee48a9b4ad758e55e (diff)
the last change is nothing important, so just go back and let class
status pages working. It could be recovered after someone updates "update-status" in buildbots. svn path=/trunk/mono/; revision=52713
Diffstat (limited to 'web')
-rw-r--r--web/web/transform.cs6
1 files changed, 1 insertions, 5 deletions
diff --git a/web/web/transform.cs b/web/web/transform.cs
index a255a6a72c9..af6424f90c3 100644
--- a/web/web/transform.cs
+++ b/web/web/transform.cs
@@ -14,11 +14,7 @@ namespace Transform
XslTransform xsl = new XslTransform ();
xsl.Load (rgstrArgs [1]);
- XmlTextWriter xtw = new XmlTextWriter (Console.Out);
- xtw.Formatting = Formatting.Indented;
- XmlWriter w = new Mono.Xml.Ext.XhtmlWriter (xtw);
- xsl.Transform (xml, null, w);
- w.Close ();
+ xsl.Transform (xml, null, Console.Out);
}
}
}