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:
authorAtsushi Eno <atsushieno@gmail.com>2005-03-22 10:27:59 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-03-22 10:27:59 +0300
commite356b3c0427516fdcdfef92272d2297f731b91c8 (patch)
treea1bcddad451a5fe117b4328427e252762d88f9d7 /mcs/class/System.XML/Mono.Xml.Xsl
parentad73d6ca40c458eecb39db9cd7376be1fc6e4476 (diff)
2005-03-22 Atsushi Enomoto <atsushi@ximian.com>
* GenericOutputter.cs : commented out warned fields. svn path=/trunk/mcs/; revision=42063
Diffstat (limited to 'mcs/class/System.XML/Mono.Xml.Xsl')
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog4
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl/GenericOutputter.cs4
2 files changed, 6 insertions, 2 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog b/mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog
index f90513b1310..a972823a45e 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog
+++ b/mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog
@@ -1,3 +1,7 @@
+2005-03-22 Atsushi Enomoto <atsushi@ximian.com>
+
+ * GenericOutputter.cs : commented out warned fields.
+
2005-03-15 Atsushi Enomoto <atsushi@ximian.com>
* XslKey.cs : removed last ListIterator.ctor() argument.
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl/GenericOutputter.cs b/mcs/class/System.XML/Mono.Xml.Xsl/GenericOutputter.cs
index a472cf3ccd3..af0e97d94df 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl/GenericOutputter.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl/GenericOutputter.cs
@@ -75,7 +75,7 @@ namespace Mono.Xml.Xsl
//Determines whether xsl:copy can output attribute-sets or not.
bool _canProcessAttributes;
bool _insideCData;
- bool _isVariable;
+// bool _isVariable;
bool _omitXmlDeclaration;
int _xpCount;
@@ -102,7 +102,7 @@ namespace Mono.Xml.Xsl
{
_emitter = new XmlWriterEmitter (writer);
_state = writer.WriteState;
- _isVariable = isVariable;
+// _isVariable = isVariable;
_omitXmlDeclaration = true; // .Net never writes XML declaration via XmlWriter
}