mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 17:44:48 +09:00
Remove Is AppDomainUnloadedException check (dotnet/corefx#30736)
Commit migrated from 71bdfca061
This commit is contained in:
parent
76a4991a94
commit
4b385c1124
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue