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:
authorMartin Baulig <martin.baulig@xamarin.com>2014-05-23 15:15:25 +0400
committerDuncan Mak <duncan@a-chinaman.com>2014-06-11 00:28:43 +0400
commitb9d887cbce83ae36c9cf56e265281e671e5d82c9 (patch)
tree951145a15ed8b042a3104bd383e6f9245541f419
parent61af8d3dcd2821b5300614b4d659332da70c855d (diff)
Small fix.
-rw-r--r--mcs/class/System/System.Net/SimpleAsyncResult.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/System.Net/SimpleAsyncResult.cs b/mcs/class/System/System.Net/SimpleAsyncResult.cs
index b2601f92186..699137fcce1 100644
--- a/mcs/class/System/System.Net/SimpleAsyncResult.cs
+++ b/mcs/class/System/System.Net/SimpleAsyncResult.cs
@@ -150,7 +150,7 @@ namespace System.Net
void DoCallback_private ()
{
if (callbackDone)
- throw new InvalidOperationException ();
+ return;
callbackDone = true;
if (cb == null)
return;