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>2004-01-25 01:40:56 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-01-25 01:40:56 +0300
commitc57d82fab419ab06f6db17f64ec9e796f86566ba (patch)
tree828bf30f4d5a9bcd2969cc05edd9225775a12c69 /mcs/class/System/System.Net.Sockets
parent7389c6267df541740c02986b9071d01f363f0ac4 (diff)
don't create the ManualResetEvent in the constructor
svn path=/trunk/mcs/; revision=22471
Diffstat (limited to 'mcs/class/System/System.Net.Sockets')
-rw-r--r--mcs/class/System/System.Net.Sockets/Socket.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/mcs/class/System/System.Net.Sockets/Socket.cs b/mcs/class/System/System.Net.Sockets/Socket.cs
index c32c4693422..748f7ba4dce 100644
--- a/mcs/class/System/System.Net.Sockets/Socket.cs
+++ b/mcs/class/System/System.Net.Sockets/Socket.cs
@@ -30,7 +30,6 @@ namespace System.Net.Sockets
public SocketAsyncResult(object state) {
this.state=state;
- waithandle=new ManualResetEvent(false);
completed_sync=completed=false;
}