1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 01:50:53 +09:00

Remove Is AppDomainUnloadedException check (dotnet/corefx#30736)

Commit migrated from 71bdfca061
This commit is contained in:
Luqun Lou 2018-06-28 13:07:13 -07:00 committed by GitHub
parent 76a4991a94
commit 4b385c1124

View file

@ -201,7 +201,7 @@ namespace System.Threading
// that IAsyncInfo, because there's nothing Post can do with it (since Post returns void).
// So, to avoid these exceptions being lost forever, we post them to the ThreadPool.
//
if (!(ex is ThreadAbortException) && !(ex is AppDomainUnloadedException))
if (!(ex is ThreadAbortException))
{
if (!ExceptionSupport.ReportUnhandledError(ex))
{