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>2004-11-24 13:45:58 +0300
committerAtsushi Eno <atsushieno@gmail.com>2004-11-24 13:45:58 +0300
commit9fbc9350806fccb13a7caa08cc1128724f472049 (patch)
treec79793d8a5adb8f6e4f6e707a6a782dfd0e12709 /mcs/class/System.XML/Mono.Xml.Xsl.Operations
parent3adcf9dff403d8242c8fa2441b20b87c9f5dc5cf (diff)
2004-11-24 Atsushi Enomoto <atsushi@ximian.com>
* XslVariable.cs, XslComment.cs XslApplyImports.cs, XslCompiledElement.cs : removed unused field. svn path=/trunk/mcs/; revision=36466
Diffstat (limited to 'mcs/class/System.XML/Mono.Xml.Xsl.Operations')
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog7
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslApplyImports.cs1
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslComment.cs1
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCompiledElement.cs2
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs4
5 files changed, 7 insertions, 8 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog
index 8c21bd36d59..50f669dd85f 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog
@@ -1,3 +1,10 @@
+2004-11-24 Atsushi Enomoto <atsushi@ximian.com>
+
+ * XslVariable.cs,
+ XslComment.cs
+ XslApplyImports.cs,
+ XslCompiledElement.cs : removed unused field.
+
2004-06-18 Atsushi Enomoto <atsushi@ximian.com>
* XslNumber.cs : Globalization. Removed unused code.
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslApplyImports.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslApplyImports.cs
index 9cd00773fef..f73eef93686 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslApplyImports.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslApplyImports.cs
@@ -38,7 +38,6 @@ using System.Xml.Xsl;
namespace Mono.Xml.Xsl.Operations {
internal class XslApplyImports : XslCompiledElement {
- ArrayList withParams;
public XslApplyImports (Compiler c) : base (c) {}
protected override void Compile (Compiler c)
{
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslComment.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslComment.cs
index a3027be73c1..65f5ec11af8 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslComment.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslComment.cs
@@ -39,7 +39,6 @@ using System.Xml.Xsl;
namespace Mono.Xml.Xsl.Operations {
internal class XslComment : XslCompiledElement {
- bool disableOutputEscaping = false;
XslOperation value;
public XslComment (Compiler c) : base (c) {}
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCompiledElement.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCompiledElement.cs
index 378862df028..7d69180f299 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCompiledElement.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCompiledElement.cs
@@ -41,8 +41,6 @@ using QName = System.Xml.XmlQualifiedName;
namespace Mono.Xml.Xsl.Operations {
internal abstract class XslCompiledElement : XslOperation {
- bool hasStack;
- int stackSize;
int lineNumber;
int linePosition;
XPathNodeType parentType;
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs
index fd4b94aa484..e27ec78b9b8 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs
@@ -178,8 +178,6 @@ namespace Mono.Xml.Xsl.Operations {
}
internal class XslGlobalParam : XslGlobalVariable {
- bool overriden;
- object paramVal;
public XslGlobalParam (Compiler c) : base (c) {}
@@ -221,8 +219,6 @@ namespace Mono.Xml.Xsl.Operations {
}
internal class XslLocalParam : XslLocalVariable {
- bool overriden;
- object paramVal;
public XslLocalParam (Compiler c) : base (c) {}