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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-07-25 21:54:01 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-07-25 21:54:01 +0400
commitd8878bc214c2250904267dd836f67b54576b39c7 (patch)
treef5a282b025bc962965ed66e86c309525a2dcc611 /mcs/class/System.Security/Mono.Xml
parent65fed058e3697d5561ad34b357c38f43bafc2072 (diff)
2003-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* XmlCanonicalizer.cs: fixed to make it build for 1.0 and 1.1. svn path=/trunk/mcs/; revision=16686
Diffstat (limited to 'mcs/class/System.Security/Mono.Xml')
-rwxr-xr-xmcs/class/System.Security/Mono.Xml/ChangeLog4
-rwxr-xr-xmcs/class/System.Security/Mono.Xml/XmlCanonicalizer.cs8
2 files changed, 8 insertions, 4 deletions
diff --git a/mcs/class/System.Security/Mono.Xml/ChangeLog b/mcs/class/System.Security/Mono.Xml/ChangeLog
index 6920af2c3ac..76bbaf7b1b5 100755
--- a/mcs/class/System.Security/Mono.Xml/ChangeLog
+++ b/mcs/class/System.Security/Mono.Xml/ChangeLog
@@ -1,3 +1,7 @@
+2003-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+ * XmlCanonicalizer.cs: fixed to make it build for 1.0 and 1.1.
+
2003-07-24 Sebastien Pouliot <spouliot@motus.com>
* XmlCanonicalizer.cs: New. C14N class from Aleksey Sanin.
diff --git a/mcs/class/System.Security/Mono.Xml/XmlCanonicalizer.cs b/mcs/class/System.Security/Mono.Xml/XmlCanonicalizer.cs
index 9b7253e7895..18cbfd3b873 100755
--- a/mcs/class/System.Security/Mono.Xml/XmlCanonicalizer.cs
+++ b/mcs/class/System.Security/Mono.Xml/XmlCanonicalizer.cs
@@ -96,13 +96,13 @@ namespace Mono.Xml {
WriteProcessingInstructionNode (node, visible);
break;
case XmlNodeType.EntityReference:
- throw new XmlException ("Entity references should be resolved by parser");
+ throw new XmlException ("Entity references should be resolved by parser", null);
case XmlNodeType.Attribute:
- throw new XmlException ("Attribute node is impossible here");
+ throw new XmlException ("Attribute node is impossible here", null);
case XmlNodeType.EndElement:
- throw new XmlException ("EndElement node is impossible here");
+ throw new XmlException ("EndElement node is impossible here", null);
case XmlNodeType.EndEntity:
- throw new XmlException ("EndEntity node is impossible here");
+ throw new XmlException ("EndEntity node is impossible here", null);
case XmlNodeType.DocumentType:
case XmlNodeType.Entity:
case XmlNodeType.Notation: