mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 03:16:11 +00:00
moved ConfigureAwait onto same line as await
This commit is contained in:
@@ -57,8 +57,7 @@ namespace Octokit
|
||||
|
||||
try
|
||||
{
|
||||
var response = await Connection.Get<object>(endpoint, null, null)
|
||||
.ConfigureAwait(false);
|
||||
var response = await Connection.Get<object>(endpoint, null, null).ConfigureAwait(false);
|
||||
return response.HttpResponse.IsTrue();
|
||||
}
|
||||
catch (NotFoundException)
|
||||
|
||||
Reference in New Issue
Block a user