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:
authorMiguel de Icaza <miguel@gnome.org>2010-03-21 01:56:56 +0300
committerMiguel de Icaza <miguel@gnome.org>2010-03-21 01:56:56 +0300
commit661b8cbd0c7dd49e1bbd1a24e32a47fcba5160c0 (patch)
tree9ab38aabf9d22a7dfefa1329239f5ac9f9f9d8e5
parent833a86518ae15bf550e5718e0abecec67386140d (diff)
2010-03-20 Miguel de Icaza <miguel@novell.com>
* WebConnection.cs: Drop pre-2.0 and pre-1.1 support, and remove warnings. svn path=/trunk/mcs/; revision=153949
-rw-r--r--mcs/class/System/System.Net/WebConnectionGroup.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/System.Net/WebConnectionGroup.cs b/mcs/class/System/System.Net/WebConnectionGroup.cs
index f98144db88f..8f0c5aa1949 100644
--- a/mcs/class/System/System.Net/WebConnectionGroup.cs
+++ b/mcs/class/System/System.Net/WebConnectionGroup.cs
@@ -59,7 +59,7 @@ namespace System.Net
WeakReference cncRef = null;
int end = connections.Count;
- ArrayList removed = null;
+ // ArrayList removed = null;
for (int i = 0; i < end; i++) {
cncRef = (WeakReference) connections [i];
WebConnection cnc = cncRef.Target as WebConnection;