cosmetics

This commit is contained in:
UbitUmarov
2023-03-07 14:33:42 +00:00
parent 048a321e33
commit ec39f85a7a
9 changed files with 242 additions and 315 deletions

View File

@@ -1,6 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace Amib.Threading.Internal
@@ -108,7 +106,7 @@ namespace Amib.Threading.Internal
{
get
{
return _workItem._state;
return _workItem.m_state;
}
}
@@ -127,7 +125,7 @@ namespace Amib.Threading.Internal
/// </summary>
public object Exception
{
get { return _workItem._exception; }
get { return _workItem.m_exception; }
}
#endregion