summaryrefslogtreecommitdiff
path: root/mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs')
-rw-r--r--mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs b/mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs
index f4b3a3b81d..f0bc902310 100644
--- a/mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs
+++ b/mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs
@@ -113,7 +113,7 @@ namespace System.Threading.Tasks
if (aggregate.InnerExceptions.Count == 0)
throw new ArgumentNullException ("exceptions");
- return source.TrySetException (aggregate);
+ return source.TrySetException (aggregate, false, false);
}
public bool TrySetResult (TResult result)