Closed IEvangelist closed 8 years ago
@jcheng31 are you no longer active on this repository? I would love to see this pull request make its way into the master
branch. Thank you
Still around, just a bit busy :(
This looks good - thanks for catching the missing Async method name, especially - though could you resubmit with it merging into develop? I'll make sure it goes out with the next release, hopefully by this weekend :)
The redundant this
s were intentional since that's how StyleCop has it out of the box, but I've seen enough good arguments elsewhere as to why they should be dropped; will go and prune them elsewhere as well if they're still lurking around.
@jcheng31, done...thanks
Merged the new request - thanks again :)
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.