[Mono-dev] [Mono-patches] r68835 - trunk/mcs/class/System.Web/System.Web

Igor Zelmanovich igorz at mainsoft.com
Sun Dec 3 03:53:38 EST 2006


Gonzalo,

Removed method is public, documented in MSDN and cannot be removed.
Tests for both profiles do not compile.

I will revert it.

Igor.

-----Original Message-----
From: mono-patches-bounces at lists.ximian.com
[mailto:mono-patches-bounces at lists.ximian.com] On Behalf Of Gonzalo
Paniagua
Sent: Friday, December 01, 2006 7:58 PM
To: mono-patches at lists.ximian.com; ximian.monolist at gmail.com;
mono-patches-list at googlegroups.com
Subject: [Mono-patches] r68835 - trunk/mcs/class/System.Web/System.Web

Author: gonzalo
Date: 2006-12-01 12:57:49 -0500 (Fri, 01 Dec 2006)
New Revision: 68835

Modified:
   trunk/mcs/class/System.Web/System.Web/ChangeLog
   trunk/mcs/class/System.Web/System.Web/HttpWriter.cs
Log:
2006-12-01 Gonzalo Paniagua Javier <gonzalo at ximian.com>

	* HttpWriter.cs: remove unused WriteBytes method.



Modified: trunk/mcs/class/System.Web/System.Web/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web/ChangeLog	2006-12-01
17:46:35 UTC (rev 68834)
+++ trunk/mcs/class/System.Web/System.Web/ChangeLog	2006-12-01
17:57:49 UTC (rev 68835)
@@ -1,3 +1,7 @@
+2006-12-01 Gonzalo Paniagua Javier <gonzalo at ximian.com>
+
+	* HttpWriter.cs: remove unused WriteBytes method.
+
 2006-11-30 Gonzalo Paniagua Javier <gonzalo at ximian.com>
 
 	* HttpRequest.cs: physical path comes from GetFilePathTranslated
to

Modified: trunk/mcs/class/System.Web/System.Web/HttpWriter.cs
===================================================================
--- trunk/mcs/class/System.Web/System.Web/HttpWriter.cs	2006-12-01
17:46:35 UTC (rev 68834)
+++ trunk/mcs/class/System.Web/System.Web/HttpWriter.cs	2006-12-01
17:57:49 UTC (rev 68835)
@@ -161,16 +161,6 @@
 
 			response.Flush ();
 		}
-
-		public void WriteBytes (byte [] buffer, int index, int
count)
-		{
-			output_stream.Write (buffer, index, count);
-
-			if (response.buffer)
-				return;
-
-			response.Flush ();
-		}
 	}
 }
 

_______________________________________________
Mono-patches maillist  -  Mono-patches at lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-patches



More information about the Mono-devel-list mailing list