Replace Task.FromResult(0) with Task.CompletedTask (#17810)

This commit is contained in:
Kahbazi 2019-12-12 13:12:29 +03:30 committed by David Fowler
parent 9a3aacb56a
commit db81768f8e
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ namespace Microsoft.AspNetCore.Session
{
establisher.SetCookie();
}
return Task.FromResult(0);
return Task.CompletedTask;
}
private void SetCookie()