Changes Task.Factory.StartNew to Task.Run

This commit is contained in:
Cyberboss
2017-12-04 10:56:58 -05:00
parent 8ef3326a67
commit b64ea64792
4 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ namespace TGS.ControlPanel
UseWaitCursor = true;
try
{
return Task.Factory.StartNew(action);
return Task.Run(action);
}
finally
{