Removed unnecessary async / await keywords. For simple Task and Task<T> methods you only need to await if you're using the or relying on the result of the task, in these cases we can simply return the task that will represent the asynchronous operation. Additionally, I removed some redundant this keywords while I was in here.
Additionally, I added the "Async" suffix to one of the methods that was missing it.
Removed unnecessary
async
/await
keywords. For simpleTask
andTask<T>
methods you only need to await if you're using the or relying on the result of the task, in these cases we can simply return the task that will represent the asynchronous operation. Additionally, I removed some redundantthis
keywords while I was in here.Additionally, I added the "Async" suffix to one of the methods that was missing it.