Explorar o código

* XmlSerializationWriter.cs: changed signature of protected method
FromByteArrayBase64 to match MS.NET

svn path=/trunk/mcs/; revision=29527

Gert Driesen %!s(int64=21) %!d(string=hai) anos
pai
achega
1c052d21b8

+ 5 - 0
mcs/class/System.XML/System.Xml.Serialization/ChangeLog

@@ -1,3 +1,8 @@
+2004-06-13  Gert Driesen <[email protected]>
+
+	* XmlSerializationWriter.cs: changed signature of protected method
+	FromByteArrayBase64 to match MS.NET
+
 2004-06-10  Lluis Sanchez Gual <[email protected]>
 
 	* MapCodeGenerator.cs, SoapCodeExporter.cs: Generate the same XmlInclude

+ 2 - 2
mcs/class/System.XML/System.Xml.Serialization/XmlSerializationWriter.cs

@@ -125,9 +125,9 @@ namespace System.Xml.Serialization {
 			return new InvalidOperationException (message);
 		}
 
-		protected static string FromByteArrayBase64 (byte[] value)
+		protected static byte[] FromByteArrayBase64 (byte[] value)
 		{
-			return XmlCustomFormatter.FromByteArrayBase64 (value);
+			return value;
 		}
 
 		protected static string FromByteArrayHex (byte[] value)