We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
direct
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
await _service.GetLabelsAsync().ContinueWith(t => t.Result.Labels);
could be refactored to
(await _service.GetLabelsAsync()).Labels;
The text was updated successfully, but these errors were encountered:
refactor: Replaced useless .ContinueWith in Api by direct call (#108)
c101fbd
9966849
fix: Replaced useless .ContinueWith in Api by direct call (#108) (#110)
c35c505
rolincova
Successfully merging a pull request may close this issue.
could be refactored to
The text was updated successfully, but these errors were encountered: