cosmetics

This commit is contained in:
UbitUmarov
2026-03-15 18:22:50 +00:00
parent 0120e62250
commit da5f1b3f7e
18 changed files with 71 additions and 82 deletions

View File

@@ -209,7 +209,7 @@ namespace OSHttpServer
/// </remarks>
public virtual void Start()
{
Task.Run(ReceiveLoop).ConfigureAwait(false);
_ = Task.Run(ReceiveLoop);
}
/// <summary>
@@ -343,7 +343,7 @@ namespace OSHttpServer
}
}
private async void ReceiveLoop()
private async Task ReceiveLoop()
{
try
{