Closed brminnick closed 2 years ago
Removed async from methods that only use the await keyword in the return statement.
async
await
return
async should be avoided when possible because it adds overhead, reducing performance and increasing memory usage.
Removed
async
from methods that only use theawait
keyword in thereturn
statement.async
should be avoided when possible because it adds overhead, reducing performance and increasing memory usage.